Fix bad macros

llvm-svn: 254287
This commit is contained in:
Marshall Clow 2015-11-30 05:10:10 +00:00
parent 825a9edb2e
commit c8f3816e63
1 changed files with 1 additions and 1 deletions

View File

@ -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, "");