diff --git a/test/unordered/link_test_1.cpp b/test/unordered/link_test_1.cpp index 3419d9da..7b03c973 100644 --- a/test/unordered/link_test_1.cpp +++ b/test/unordered/link_test_1.cpp @@ -7,8 +7,12 @@ #include "../helpers/unordered.hpp" #ifdef BOOST_UNORDERED_FOA_TESTS + +#include + void foo(boost::unordered_flat_set&, boost::unordered_flat_map&, - boost::unordered_node_set&, boost::unordered_node_map&); + boost::unordered_node_set&, boost::unordered_node_map&, + boost::concurrent_flat_map&); int main() { @@ -16,8 +20,9 @@ int main() boost::unordered_flat_map x2; boost::unordered_node_set x3; boost::unordered_node_map x4; + boost::concurrent_flat_map x5; - foo(x1, x2, x3, x4); + foo(x1, x2, x3, x4, x5); return 0; } diff --git a/test/unordered/link_test_2.cpp b/test/unordered/link_test_2.cpp index aea7a728..917544dd 100644 --- a/test/unordered/link_test_2.cpp +++ b/test/unordered/link_test_2.cpp @@ -7,9 +7,13 @@ #include "../helpers/unordered.hpp" #ifdef BOOST_UNORDERED_FOA_TESTS + +#include + void foo(boost::unordered_flat_set& x1, boost::unordered_flat_map& x2, boost::unordered_node_set& x3, - boost::unordered_node_map& x4) + boost::unordered_node_map& x4, + boost::concurrent_flat_map& x5) { #if BOOST_WORKAROUND(BOOST_CODEGEARC, BOOST_TESTED_AT(0x0613)) struct dummy @@ -23,6 +27,7 @@ void foo(boost::unordered_flat_set& x1, x2[2] = 2; x3.insert(3); x4.insert(std::make_pair(4, 5)); + x5.insert(std::make_pair(5, 6)); } #else void foo(boost::unordered_set& x1, boost::unordered_map& x2,