diff --git a/test/unordered/transparent_tests.cpp b/test/unordered/transparent_tests.cpp index 7d8f93d7..fec3400a 100644 --- a/test/unordered/transparent_tests.cpp +++ b/test/unordered/transparent_tests.cpp @@ -1185,7 +1185,7 @@ template void test_map_non_transparent_erase() ++key_count; BOOST_TEST_EQ(num_erased, 1); BOOST_TEST_EQ(map.size(), 1); - + BOOST_TEST(map.find(1) == map.end()); ++key_count; @@ -1360,7 +1360,7 @@ multimap_extract_const_overload_compile_test() return map.extract(c); } -template void test_transparent_extract() +template void test_map_transparent_extract() { typedef typename UnorderedMap::node_type node_type; typedef typename UnorderedMap::const_iterator const_iterator; @@ -1399,7 +1399,7 @@ template void test_transparent_extract() BOOST_TEST_EQ(key::count_, expected_key_count); } -template void test_non_transparent_extract() +template void test_map_non_transparent_extract() { typedef typename UnorderedMap::node_type node_type; typedef typename UnorderedMap::const_iterator const_iterator; @@ -1454,7 +1454,7 @@ void test_unordered_map() test_map_transparent_find(); test_map_transparent_equal_range(); test_map_transparent_erase(); - test_transparent_extract(); + test_map_transparent_extract(); } { @@ -1466,7 +1466,7 @@ void test_unordered_map() test_map_non_transparent_find(); test_map_non_transparent_equal_range(); test_map_non_transparent_erase(); - test_non_transparent_extract(); + test_map_non_transparent_extract(); } { @@ -1479,7 +1479,7 @@ void test_unordered_map() test_map_non_transparent_find(); test_map_non_transparent_equal_range(); test_map_non_transparent_erase(); - test_non_transparent_extract(); + test_map_non_transparent_extract(); } { @@ -1492,7 +1492,7 @@ void test_unordered_map() test_map_non_transparent_find(); test_map_non_transparent_equal_range(); test_map_non_transparent_erase(); - test_non_transparent_extract(); + test_map_non_transparent_extract(); } } @@ -1507,7 +1507,7 @@ void test_unordered_multimap() test_map_transparent_find(); test_map_transparent_equal_range(); test_map_transparent_erase(); - test_transparent_extract(); + test_map_transparent_extract(); } { @@ -1520,7 +1520,7 @@ void test_unordered_multimap() test_map_non_transparent_find(); test_map_non_transparent_equal_range(); test_map_non_transparent_erase(); - test_non_transparent_extract(); + test_map_non_transparent_extract(); } { @@ -1533,7 +1533,7 @@ void test_unordered_multimap() test_map_non_transparent_find(); test_map_non_transparent_equal_range(); test_map_non_transparent_erase(); - test_non_transparent_extract(); + test_map_non_transparent_extract(); } { @@ -1546,7 +1546,7 @@ void test_unordered_multimap() test_map_non_transparent_find(); test_map_non_transparent_equal_range(); test_map_non_transparent_erase(); - test_non_transparent_extract(); + test_map_non_transparent_extract(); } }