Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/iris
13 changes: 7 additions & 6 deletions test/alloy/alloy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/

#include <iris_test.hpp>

#include <iris/config.hpp>
#include <iris/io_fwd.hpp>

#include <iris/alloy/adapted/std_tuple.hpp>
Expand All @@ -17,6 +16,8 @@
#include <iris/alloy/tuple.hpp>
#include <iris/alloy/utility.hpp>

#include <catch2/catch_test_macros.hpp>

namespace alloy = iris::alloy;

struct NonAdaptedStruct
Expand Down Expand Up @@ -395,16 +396,16 @@ TEST_CASE("tuple")
STATIC_CHECK(!std::is_constructible_v<alloy::tuple<int const&>, double>);
STATIC_CHECK(!std::is_constructible_v<alloy::tuple<int const&>, double&>);
STATIC_CHECK(!std::is_constructible_v<alloy::tuple<int const&>, double&&>);

STATIC_CHECK(!std::is_constructible_v<alloy::tuple<int const&>, alloy::tuple<double>&>);
STATIC_CHECK(!std::is_constructible_v<alloy::tuple<int const&>, alloy::tuple<double&>&>);

STATIC_CHECK(!std::is_constructible_v<alloy::tuple<int const&>, alloy::tuple<double> const&>);
STATIC_CHECK(!std::is_constructible_v<alloy::tuple<int const&>, alloy::tuple<double&> const&>);

STATIC_CHECK(!std::is_constructible_v<alloy::tuple<int const&>, alloy::tuple<double>&&>);
STATIC_CHECK(!std::is_constructible_v<alloy::tuple<int const&>, alloy::tuple<double&>&&>);

STATIC_CHECK(!std::is_constructible_v<alloy::tuple<int const&>, alloy::tuple<double> const&&>);
STATIC_CHECK(!std::is_constructible_v<alloy::tuple<int const&>, alloy::tuple<double&> const&&>);

Expand Down
4 changes: 3 additions & 1 deletion test/x4/iris_x4_test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/

#include "iris_test.hpp"
#include <iris/config.hpp>

#include <iris/x4/core/parser.hpp>
#include <iris/x4/core/move_to.hpp>
#include <iris/x4/parse.hpp>
#include <iris/x4/parse_debug.hpp>

#include <catch2/catch_test_macros.hpp> // IWYU pragma: export

#include <iterator>
#include <string_view>
#include <type_traits>
Expand Down
Loading