mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-30 00:50:38 +08:00
make dump() function const (issue #44)
This commit is contained in:
Vendored
+2
-2
@@ -1498,7 +1498,7 @@ public:
|
||||
|
||||
#ifndef PHMAP_NON_DETERMINISTIC
|
||||
template<typename OutputArchive>
|
||||
bool dump(OutputArchive&);
|
||||
bool dump(OutputArchive&) const;
|
||||
|
||||
template<typename InputArchive>
|
||||
bool load(InputArchive&);
|
||||
@@ -3113,7 +3113,7 @@ public:
|
||||
|
||||
#ifndef PHMAP_NON_DETERMINISTIC
|
||||
template<typename OutputArchive>
|
||||
bool dump(OutputArchive& ar);
|
||||
bool dump(OutputArchive& ar) const;
|
||||
|
||||
template<typename InputArchive>
|
||||
bool load(InputArchive& ar);
|
||||
|
||||
Reference in New Issue
Block a user