From 95eedc7e828be4ed79b23d7358bc41f44cc60d90 Mon Sep 17 00:00:00 2001 From: greg Date: Sun, 29 Nov 2020 11:10:48 -0500 Subject: [PATCH] update example to use more typical defaults. --- examples/allmaps.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/allmaps.cc b/examples/allmaps.cc index 6259624..a404653 100644 --- a/examples/allmaps.cc +++ b/examples/allmaps.cc @@ -58,8 +58,8 @@ int main(int, char **) // example of using default parameters in order to specify the mutex type using Map = phmap::parallel_flat_hash_map, - phmap::priv::hash_default_eq, + std::hash, + std::equal_to, std::allocator>, 4, std::mutex>;