mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-29 08:34:39 +08:00
fix typo in comment (erase instead of _erase)
This commit is contained in:
Vendored
+2
-2
@@ -4700,7 +4700,7 @@ public:
|
||||
// hashing function and equality operator.
|
||||
// * Contains a `capacity()` member function indicating the number of element
|
||||
// slots (open, deleted, and empty) within the hash set.
|
||||
// * Returns `void` from the `erase(iterator)` overload.
|
||||
// * Returns `void` from the `_erase(iterator)` overload.
|
||||
// -----------------------------------------------------------------------------
|
||||
template <class T, class Hash, class Eq, class Alloc> // default values in phmap_fwd_decl.h
|
||||
class node_hash_set
|
||||
@@ -4765,7 +4765,7 @@ public:
|
||||
// hashing function and equality operator.
|
||||
// * Contains a `capacity()` member function indicating the number of element
|
||||
// slots (open, deleted, and empty) within the hash map.
|
||||
// * Returns `void` from the `erase(iterator)` overload.
|
||||
// * Returns `void` from the `_erase(iterator)` overload.
|
||||
// -----------------------------------------------------------------------------
|
||||
template <class Key, class Value, class Hash, class Eq, class Alloc> // default values in phmap_fwd_decl.h
|
||||
class node_hash_map
|
||||
|
||||
Reference in New Issue
Block a user