diff --git a/test/cfoa/fwd_tests.cpp b/test/cfoa/fwd_tests.cpp index 8e88f849..12534533 100644 --- a/test/cfoa/fwd_tests.cpp +++ b/test/cfoa/fwd_tests.cpp @@ -3,7 +3,7 @@ // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "helpers.hpp" - +#include #include test::seed_t initialize_seed{32304628}; @@ -37,11 +37,15 @@ bool unequal_call(boost::unordered::concurrent_flat_map& x1, using map_type = boost::unordered::concurrent_flat_map; +#if BOOST_WORKAROUND(BOOST_CLANG_VERSION, != 30700) + UNORDERED_AUTO_TEST (fwd_swap_call) { map_type x1, x2; swap_call(x1, x2); } +#endif + UNORDERED_AUTO_TEST (fwd_equal_call) { map_type x1, x2; BOOST_TEST(equal_call(x1, x2));