forked from boostorg/unordered
tested concurrent_flat_set
This commit is contained in:
@ -11,6 +11,7 @@
|
|||||||
#include <boost/archive/xml_iarchive.hpp>
|
#include <boost/archive/xml_iarchive.hpp>
|
||||||
#include <boost/serialization/nvp.hpp>
|
#include <boost/serialization/nvp.hpp>
|
||||||
#include <boost/unordered/concurrent_flat_map.hpp>
|
#include <boost/unordered/concurrent_flat_map.hpp>
|
||||||
|
#include <boost/unordered/concurrent_flat_set.hpp>
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
@ -69,9 +70,11 @@ namespace {
|
|||||||
|
|
||||||
boost::concurrent_flat_map<
|
boost::concurrent_flat_map<
|
||||||
test::object, test::object, test::hash, test::equal_to>* test_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,
|
UNORDERED_TEST(serialization_tests,
|
||||||
((test_flat_map))
|
((test_flat_map)(test_flat_set))
|
||||||
((text_archive)(xml_archive))
|
((text_archive)(xml_archive))
|
||||||
((default_generator)))
|
((default_generator)))
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user