summaryrefslogtreecommitdiffhomepage
path: root/benchmarks/cmap_benchmark2.cpp
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2021-01-19 12:50:02 +0100
committerTyge Løvset <[email protected]>2021-01-19 12:50:02 +0100
commit60132bb5653cf5bd5cf5c0c331bf827456097af5 (patch)
treed9c3212a9214ab7fd6549a48505dc270e6595e0a /benchmarks/cmap_benchmark2.cpp
parent7fa5cd3a4092991268276259fa07fda2bb12cfc1 (diff)
downloadSTC-modified-60132bb5653cf5bd5cf5c0c331bf827456097af5.tar.gz
STC-modified-60132bb5653cf5bd5cf5c0c331bf827456097af5.zip
Changed template args sequence in cmap.
Diffstat (limited to 'benchmarks/cmap_benchmark2.cpp')
-rw-r--r--benchmarks/cmap_benchmark2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/cmap_benchmark2.cpp b/benchmarks/cmap_benchmark2.cpp
index 14037719..6eedeb9f 100644
--- a/benchmarks/cmap_benchmark2.cpp
+++ b/benchmarks/cmap_benchmark2.cpp
@@ -41,8 +41,8 @@ DEFMAP(map_i, <int, int>);
DEFMAP(map_x, <uint64_t, uint64_t>);
DEFMAP(map_s, <std::string, std::string>);
-using_cmap(i, int, int, c_default_del, c_default_clone, c_default_equals, hash32);
-using_cmap(x, uint64_t, uint64_t, c_default_del, c_default_clone, c_default_equals, hash64);
+using_cmap(i, int, int, c_default_equals, hash32);
+using_cmap(x, uint64_t, uint64_t, c_default_equals, hash64);
using_cmap_strkey(s, cstr, cstr_del, cstr_clone);
template <class MapInt>