mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-30 00:50:38 +08:00
replace "container_internal" with the shorter "priv"
This commit is contained in:
Vendored
+2
-2
@@ -265,8 +265,8 @@
|
||||
</table>
|
||||
<p>It is about time we provide the complete parallel_flat_hash_map class declaration (the declaration for parallel_flat_hash_set is similar):</p>
|
||||
<pre><code>template <class K, class V,
|
||||
class Hash = absl::container_internal::hash_default_hash<K>,
|
||||
class Eq = absl::container_internal::hash_default_eq<K>,
|
||||
class Hash = absl::priv::hash_default_hash<K>,
|
||||
class Eq = absl::priv::hash_default_eq<K>,
|
||||
class Allocator = std::allocator<std::pair<const K, V>>,
|
||||
size_t N = 4, // 2**N submaps
|
||||
class Mutex = absl::NullMutex> // use absl::Mutex to enable internal locks
|
||||
|
||||
Reference in New Issue
Block a user