From dddfbf8aa8ce5be657b6666186b1162876027fa0 Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Wed, 25 Jan 2023 14:43:14 -0800 Subject: [PATCH] Add node-based foa containers to swap_exception_tests --- test/exception/swap_exception_tests.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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