Index: test/std/containers/sequences/vector.bool/construct_default.pass.cpp =================================================================== --- test/std/containers/sequences/vector.bool/construct_default.pass.cpp +++ test/std/containers/sequences/vector.bool/construct_default.pass.cpp @@ -24,7 +24,7 @@ test0() { #if TEST_STD_VER > 14 - static_assert((noexcept(C{})), "" ); + LIBCPP_STATIC_ASSERT((noexcept(C{})), "" ); #elif TEST_STD_VER >= 11 static_assert((noexcept(C()) == noexcept(typename C::allocator_type())), "" ); #endif @@ -45,7 +45,7 @@ test1(const typename C::allocator_type& a) { #if TEST_STD_VER > 14 - static_assert((noexcept(C{typename C::allocator_type{}})), "" ); + LIBCPP_STATIC_ASSERT((noexcept(C{typename C::allocator_type{}})), "" ); #elif TEST_STD_VER >= 11 static_assert((noexcept(C(typename C::allocator_type())) == std::is_nothrow_copy_constructible::value), "" ); #endif