From 0fed32f15c101e93b17b3146dc0b915242740aad Mon Sep 17 00:00:00 2001 From: Nana Sakisaka <1901813+saki7@users.noreply.github.com> Date: Thu, 12 Mar 2026 23:06:58 +0900 Subject: [PATCH] Update iris Companion PR for iris-cpp/iris#53 --- modules/iris | 2 +- test/alloy/alloy.cpp | 13 +++++++------ test/x4/iris_x4_test.hpp | 4 +++- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/modules/iris b/modules/iris index 7f3a1c838..8104bf726 160000 --- a/modules/iris +++ b/modules/iris @@ -1 +1 @@ -Subproject commit 7f3a1c838e45e74e0041d2b2ccc8e06b03fb4461 +Subproject commit 8104bf726122384bea8e18feac2d956ffa26bf7f diff --git a/test/alloy/alloy.cpp b/test/alloy/alloy.cpp index 9062edb92..6c249df13 100644 --- a/test/alloy/alloy.cpp +++ b/test/alloy/alloy.cpp @@ -5,8 +5,7 @@ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ -#include - +#include #include #include @@ -17,6 +16,8 @@ #include #include +#include + namespace alloy = iris::alloy; struct NonAdaptedStruct @@ -395,16 +396,16 @@ TEST_CASE("tuple") STATIC_CHECK(!std::is_constructible_v, double>); STATIC_CHECK(!std::is_constructible_v, double&>); STATIC_CHECK(!std::is_constructible_v, double&&>); - + STATIC_CHECK(!std::is_constructible_v, alloy::tuple&>); STATIC_CHECK(!std::is_constructible_v, alloy::tuple&>); - + STATIC_CHECK(!std::is_constructible_v, alloy::tuple const&>); STATIC_CHECK(!std::is_constructible_v, alloy::tuple const&>); - + STATIC_CHECK(!std::is_constructible_v, alloy::tuple&&>); STATIC_CHECK(!std::is_constructible_v, alloy::tuple&&>); - + STATIC_CHECK(!std::is_constructible_v, alloy::tuple const&&>); STATIC_CHECK(!std::is_constructible_v, alloy::tuple const&&>); diff --git a/test/x4/iris_x4_test.hpp b/test/x4/iris_x4_test.hpp index aa98e50db..cc54d29a5 100644 --- a/test/x4/iris_x4_test.hpp +++ b/test/x4/iris_x4_test.hpp @@ -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 #include #include #include #include +#include // IWYU pragma: export + #include #include #include