From: khizmax Date: Sun, 26 Feb 2017 19:04:09 +0000 (+0300) Subject: Fixed compiler error X-Git-Tag: v2.3.0~151 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=37035f1a51ee2412bf2bef2d54a70c7f80ca89b6;p=libcds.git Fixed compiler error --- diff --git a/test/stress/set/iteration/set_iteration_feldman_hashset.cpp b/test/stress/set/iteration/set_iteration_feldman_hashset.cpp index fb0ff3af..3371dd9a 100644 --- a/test/stress/set/iteration/set_iteration_feldman_hashset.cpp +++ b/test/stress/set/iteration/set_iteration_feldman_hashset.cpp @@ -33,7 +33,7 @@ namespace set { - CDSSTRESS_FeldmanHashSet_stdhash_quick( Set_Iteration, run_test_extract, std::string, Set_Iteration::value_type ) - CDSSTRESS_FeldmanHashSet_city_quick( Set_Iteration, run_test_extract, std::string, Set_Iteration::value_type ) + CDSSTRESS_FeldmanHashSet_stdhash( Set_Iteration, run_test_extract, std::string, Set_Iteration::value_type ) + CDSSTRESS_FeldmanHashSet_city( Set_Iteration, run_test_extract, std::string, Set_Iteration::value_type ) } // namespace set diff --git a/test/stress/set/set_type_feldman_hashset.h b/test/stress/set/set_type_feldman_hashset.h index c85f4d25..5937602f 100644 --- a/test/stress/set/set_type_feldman_hashset.h +++ b/test/stress/set/set_type_feldman_hashset.h @@ -421,7 +421,6 @@ namespace set { #define CDSSTRESS_FeldmanHashSet_stdhash( fixture, test_case, key_type, value_type ) \ CDSSTRESS_FeldmanHashSet_stdhash_HP( fixture, test_case, key_type, value_type ) \ CDSSTRESS_FeldmanHashSet_stdhash_RCU( fixture, test_case, key_type, value_type ) \ - CDSSTRESS_FeldmanHashSet_stdhash_rcu_gpi( fixture, test_case, key_type, value_type ) \ #if CDS_BUILD_BITS == 64 # define CDSSTRESS_FeldmanHashSet_city_rcu_gpi( fixture, test_case, key_type, value_type ) \ @@ -454,7 +453,6 @@ namespace set { # define CDSSTRESS_FeldmanHashSet_city( fixture, test_case, key_type, value_type ) \ CDSSTRESS_FeldmanHashSet_city_HP( fixture, test_case, key_type, value_type ) \ CDSSTRESS_FeldmanHashSet_city_RCU( fixture, test_case, key_type, value_type ) \ - CDSSTRESS_FeldmanHashSet_city_rcu_gpi( fixture, test_case, key_type, value_type ) \ #else