From e16537d24438933d07e0e0791e545577802b7e90 Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Fri, 14 Oct 2022 11:28:26 -0700 Subject: [PATCH] Add helper header to include map types based on FOA vs FCA --- test/helpers/unordered.hpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/helpers/unordered.hpp diff --git a/test/helpers/unordered.hpp b/test/helpers/unordered.hpp new file mode 100644 index 00000000..289e79b7 --- /dev/null +++ b/test/helpers/unordered.hpp @@ -0,0 +1,21 @@ + +// 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 +#include +#include +#include +#else +#include +#include +#endif +#include "postfix.hpp" + +#endif