tested concurrent_flat_set

This commit is contained in:
joaquintides
2023-09-11 09:54:48 +02:00
parent 31c3ce97de
commit 88f8228079

View File

@ -11,6 +11,7 @@
#include <boost/archive/xml_iarchive.hpp>
#include <boost/serialization/nvp.hpp>
#include <boost/unordered/concurrent_flat_map.hpp>
#include <boost/unordered/concurrent_flat_set.hpp>
namespace {
@ -69,9 +70,11 @@ namespace {
boost::concurrent_flat_map<
test::object, test::object, test::hash, test::equal_to>* test_flat_map;
boost::concurrent_flat_set<
test::object, test::hash, test::equal_to>* test_flat_set;
UNORDERED_TEST(serialization_tests,
((test_flat_map))
((test_flat_map)(test_flat_set))
((text_archive)(xml_archive))
((default_generator)))
}