| 1 | |
| 2 | // Copyright 2022 Christian Mazakas |
| 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying |
| 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 5 | |
| 6 | #if !defined(BOOST_UNORDERED_TEST_HELPERS_UNORDERED_HEADER) |
| 7 | #define |
| 8 | |
| 9 | // clang-format off |
| 10 | #include "prefix.hpp" |
| 11 | #ifdef BOOST_UNORDERED_FOA_TESTS |
| 12 | #include <boost/unordered/unordered_flat_set.hpp> |
| 13 | #include <boost/unordered/unordered_flat_map.hpp> |
| 14 | #include <boost/unordered/unordered_node_map.hpp> |
| 15 | #include <boost/unordered/unordered_node_set.hpp> |
| 16 | #include <boost/unordered/detail/implementation.hpp> |
| 17 | #else |
| 18 | #include <boost/unordered_set.hpp> |
| 19 | #include <boost/unordered_map.hpp> |
| 20 | #endif |
| 21 | #include "postfix.hpp" |
| 22 | // clang-format on |
| 23 | |
| 24 | #if defined(BOOST_LIBSTDCXX_VERSION) |
| 25 | #if BOOST_LIBSTDCXX_VERSION < 60000 |
| 26 | #define BOOST_UNORDERED_NO_INIT_TYPE_TESTS |
| 27 | #endif |
| 28 | #endif |
| 29 | |
| 30 | #endif |
| 31 | |