diff --git a/test/cfoa/insert_tests.cpp b/test/cfoa/insert_tests.cpp index c12fa695..631c8877 100644 --- a/test/cfoa/insert_tests.cpp +++ b/test/cfoa/insert_tests.cpp @@ -205,7 +205,7 @@ namespace { { template void operator()(std::vector& values, X& x) { - std::atomic_uint64_t num_inserts{0}; + std::atomic num_inserts{0}; thread_runner(values, [&x, &num_inserts](boost::span s) { for (auto const& r : s) { bool b = x.insert(r); @@ -235,7 +235,7 @@ namespace { { BOOST_TEST_EQ(raii::copy_constructor, 0); - std::atomic_uint64_t num_inserts{0}; + std::atomic num_inserts{0}; thread_runner(values, [&x, &num_inserts](boost::span s) { for (auto& r : s) { bool b = x.insert(std::move(r));