summaryrefslogtreecommitdiffhomepage
path: root/misc/benchmarks/external/emhash/hash_table7.hpp
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2023-05-29 20:42:43 +0200
committerTyge Løvset <[email protected]>2023-05-29 20:42:43 +0200
commit80df921622c97634aeea31821a61f46885324d9c (patch)
treed755e6e3b1294f80ff068695a7b8c5096b3b8359 /misc/benchmarks/external/emhash/hash_table7.hpp
parent8497b5497ecba2c2f1d368c9161ec52d4f03ae30 (diff)
downloadSTC-modified-80df921622c97634aeea31821a61f46885324d9c.tar.gz
STC-modified-80df921622c97634aeea31821a61f46885324d9c.zip
Update extern benchmark maps.
Removed i_expandby in cmap. Always expand by 2 i.e 2^n buckets..
Diffstat (limited to 'misc/benchmarks/external/emhash/hash_table7.hpp')
-rw-r--r--misc/benchmarks/external/emhash/hash_table7.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/benchmarks/external/emhash/hash_table7.hpp b/misc/benchmarks/external/emhash/hash_table7.hpp
index c21e145b..41970d8c 100644
--- a/misc/benchmarks/external/emhash/hash_table7.hpp
+++ b/misc/benchmarks/external/emhash/hash_table7.hpp
@@ -1777,7 +1777,7 @@ private:
next_bucket = find_last_bucket(next_bucket);
//find a new empty and link it to tail
- return EMH_BUCKET(_pairs, next_bucket) = find_unique_empty(next_bucket);
+ return EMH_BUCKET(_pairs, next_bucket) = find_empty_bucket(next_bucket, bucket);
}
#if EMH_INT_HASH