mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-30 00:50:38 +08:00
fix typo
This commit is contained in:
Vendored
+1
-1
@@ -2329,7 +2329,7 @@ class parallel_hash_set
|
||||
KeyArg<IsTransparent<Eq>::value && IsTransparent<Hash>::value>;
|
||||
|
||||
static_assert(N <= 12, "N = 12 means 4096 hash tables!");
|
||||
constexpr static size_t num_tables = 1 N;
|
||||
constexpr static size_t num_tables = 1 << N;
|
||||
constexpr static size_t mask = num_tables - 1;
|
||||
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user