2022-10-14 11:28:26 -07:00
|
|
|
|
|
|
|
// Copyright 2022 Christian Mazakas
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
|
|
|
#if !defined(BOOST_UNORDERED_TEST_HELPERS_UNORDERED_HEADER)
|
|
|
|
#define BOOST_UNORDERED_TEST_HELPERS_UNORDERED_HEADER
|
|
|
|
|
|
|
|
// clang-format off
|
|
|
|
#include "prefix.hpp"
|
|
|
|
#ifdef BOOST_UNORDERED_FOA_TESTS
|
2022-10-20 15:25:40 -07:00
|
|
|
#include <boost/unordered/unordered_flat_set.hpp>
|
|
|
|
#include <boost/unordered/unordered_flat_map.hpp>
|
2022-10-14 11:28:26 -07:00
|
|
|
#include <boost/unordered/detail/implementation.hpp>
|
|
|
|
#else
|
|
|
|
#include <boost/unordered_set.hpp>
|
|
|
|
#include <boost/unordered_map.hpp>
|
|
|
|
#endif
|
|
|
|
#include "postfix.hpp"
|
|
|
|
|
|
|
|
#endif
|