From 88f8228079adf3c14c71823fc8ea754ae3b54100 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Mon, 11 Sep 2023 09:54:48 +0200 Subject: [PATCH] tested concurrent_flat_set --- test/cfoa/serialization_tests.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/cfoa/serialization_tests.cpp b/test/cfoa/serialization_tests.cpp index ad762451..135567c5 100644 --- a/test/cfoa/serialization_tests.cpp +++ b/test/cfoa/serialization_tests.cpp @@ -11,6 +11,7 @@ #include #include #include +#include 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))) }