Fix bad macros
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@254287 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -23,7 +23,7 @@ void test_alignment_of()
|
||||
static_assert( std::alignment_of<const T>::value == A, "");
|
||||
static_assert( std::alignment_of<volatile T>::value == A, "");
|
||||
static_assert( std::alignment_of<const volatile T>::value == A, "");
|
||||
#if TEST_STD_VERS > 14
|
||||
#if TEST_STD_VER > 14
|
||||
static_assert( std::alignment_of_v<T> == A, "");
|
||||
static_assert( std::alignment_of_v<const T> == A, "");
|
||||
static_assert( std::alignment_of_v<volatile T> == A, "");
|
||||
|
||||
Reference in New Issue
Block a user