diff --git a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_convert_copy.pass.cpp b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_convert_copy.pass.cpp index 4ed413477a8c2..40b5cdad79c5e 100644 --- a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_convert_copy.pass.cpp +++ b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_convert_copy.pass.cpp @@ -36,7 +36,7 @@ struct Implicit { Implicit(int x) : value(x) {} }; -#if _LIBCPP_STD_VER > 17 +#if TEST_STD_VER > 17 constexpr bool alloc_copy_constructor_is_constexpr() { const std::tuple t1 = 1; std::tuple t2 = {std::allocator_arg, test_allocator{}, t1}; @@ -106,7 +106,7 @@ int main(int, char**) std::tuple t0(derived, A1(), from); } -#if _LIBCPP_STD_VER > 17 +#if TEST_STD_VER > 17 static_assert(alloc_copy_constructor_is_constexpr()); #endif return 0; diff --git a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_convert_move.pass.cpp b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_convert_move.pass.cpp index 1423c6174339d..6d223632405dd 100644 --- a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_convert_move.pass.cpp +++ b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_convert_move.pass.cpp @@ -51,7 +51,7 @@ struct Implicit { Implicit(int x) : value(x) {} }; -#if _LIBCPP_STD_VER > 17 +#if TEST_STD_VER > 17 constexpr bool alloc_move_constructor_is_constexpr() { std::tuple t1 = 1; std::tuple t2 = {std::allocator_arg, test_allocator{}, std::move(t1)}; @@ -119,7 +119,7 @@ int main(int, char**) std::tuple t0(derived, A1(), std::move(from)); } -#if _LIBCPP_STD_VER > 17 +#if TEST_STD_VER > 17 static_assert(alloc_move_constructor_is_constexpr()); #endif