Index: test/std/utilities/tuple/tuple.tuple/tuple.apply/make_from_tuple.pass.cpp =================================================================== --- test/std/utilities/tuple/tuple.tuple/tuple.apply/make_from_tuple.pass.cpp +++ test/std/utilities/tuple/tuple.tuple/tuple.apply/make_from_tuple.pass.cpp @@ -175,14 +175,14 @@ Tuple tup; ((void)tup); Tuple const& ctup = tup; ((void)ctup); ASSERT_NOT_NOEXCEPT(std::make_from_tuple(ctup)); - ASSERT_NOEXCEPT(std::make_from_tuple(std::move(tup))); + LIBCPP_ONLY(ASSERT_NOEXCEPT(std::make_from_tuple(std::move(tup)))); } { using Tuple = std::pair; Tuple tup; ((void)tup); Tuple const& ctup = tup; ((void)ctup); ASSERT_NOT_NOEXCEPT(std::make_from_tuple(ctup)); - ASSERT_NOEXCEPT(std::make_from_tuple(std::move(tup))); + LIBCPP_ONLY(ASSERT_NOEXCEPT(std::make_from_tuple(std::move(tup)))); } { using Tuple = std::tuple; @@ -192,7 +192,7 @@ { using Tuple = std::tuple; Tuple tup; ((void)tup); - ASSERT_NOEXCEPT(std::make_from_tuple(tup)); + LIBCPP_ONLY(ASSERT_NOEXCEPT(std::make_from_tuple(tup))); } { using Tuple = std::array; @@ -202,7 +202,7 @@ { using Tuple = std::array; Tuple tup; ((void)tup); - ASSERT_NOEXCEPT(std::make_from_tuple(tup)); + LIBCPP_ONLY(ASSERT_NOEXCEPT(std::make_from_tuple(tup))); } }