From a5cc4f1eef8a918c473a3814441817210adf9511 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 19 Apr 2021 21:53:54 +0200 Subject: [PATCH] Fix find/replace bug in test name --- test/vector_test.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/vector_test.hpp b/test/vector_test.hpp index e290c6a..bee441a 100644 --- a/test/vector_test.hpp +++ b/test/vector_test.hpp @@ -55,13 +55,13 @@ struct vector_hash_function_capacity }; template -bool vector_vector_hash_function_capacity_only(V1&, V2&, boost::container::dtl::false_type) +bool vector_capacity_test(V1&, V2&, boost::container::dtl::false_type) { return true; } template -bool vector_vector_hash_function_capacity_only(MyBoostVector&boostvector, MyStdVector&stdvector, boost::container::dtl::true_type) +bool vector_capacity_test(MyBoostVector&boostvector, MyStdVector&stdvector, boost::container::dtl::true_type) { //deque has no reserve boostvector.reserve(boostvector.size()*2); @@ -496,7 +496,7 @@ int vector_test() if(!test::CheckEqualContainers(boostvector, stdvector)) return 1; } - if(!vector_vector_hash_function_capacity_only(boostvector, stdvector, dtl::bool_::value>())) + if(!vector_capacity_test(boostvector, stdvector, dtl::bool_::value>())) return 1; boostvector.clear();