diff --git a/test/exception/swap_exception_tests.cpp b/test/exception/swap_exception_tests.cpp index e60ab939..c66880ea 100644 --- a/test/exception/swap_exception_tests.cpp +++ b/test/exception/swap_exception_tests.cpp @@ -247,8 +247,14 @@ using unordered_flat_set = boost::unordered_flat_set, std::equal_to, test::allocator1 >; using unordered_flat_map = boost::unordered_flat_map, std::equal_to, test::allocator1 > >; +using unordered_node_set = boost::unordered_node_set, + std::equal_to, test::allocator1 >; +using unordered_node_map = boost::unordered_node_map, + std::equal_to, test::allocator1 > >; -#define SWAP_CONTAINER_SEQ (unordered_flat_set)(unordered_flat_map) +#define SWAP_CONTAINER_SEQ \ + (unordered_flat_set)(unordered_flat_map) \ + (unordered_node_set)(unordered_node_map) #else