summaryrefslogtreecommitdiffhomepage
path: root/benchmarks/shootout_hashmaps.cpp
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-04-18 23:53:18 +0200
committerTyge Løvset <[email protected]>2022-04-18 23:53:18 +0200
commit58497293d88109624d4798c56e888bcbab7c4285 (patch)
tree670f4f481672635f27363ea2d711a4cbb37618d6 /benchmarks/shootout_hashmaps.cpp
parent1eddea1da0125ddad2f8804fadafd1494c1bb11a (diff)
downloadSTC-modified-58497293d88109624d4798c56e888bcbab7c4285.tar.gz
STC-modified-58497293d88109624d4798c56e888bcbab7c4285.zip
crandom.h: Renamed *_init(..) functions to *_new(..). Old names are kept but deprecated.
Diffstat (limited to 'benchmarks/shootout_hashmaps.cpp')
-rw-r--r--benchmarks/shootout_hashmaps.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/shootout_hashmaps.cpp b/benchmarks/shootout_hashmaps.cpp
index cd336931..57bd3383 100644
--- a/benchmarks/shootout_hashmaps.cpp
+++ b/benchmarks/shootout_hashmaps.cpp
@@ -32,7 +32,7 @@ KHASH_MAP_INIT_INT64(ii, int64_t)
stc64_t rng;
size_t seed;
-#define SEED(s) rng = stc64_init(seed)
+#define SEED(s) rng = stc64_new(seed)
#define RAND(N) (stc64_rand(&rng) & (((uint64_t)1 << N) - 1))