Fix bad _LIBCPP_ALIGNOF test

llvm-svn: 347790
This commit is contained in:
Eric Fiselier 2018-11-28 18:32:16 +00:00
parent 4d64d7dd64
commit 901ede719b

View File

@ -21,7 +21,6 @@ template <class T>
void test() {
static_assert(_LIBCPP_ALIGNOF(T) == std::alignment_of<T>::value, "");
static_assert(_LIBCPP_ALIGNOF(T) == TEST_ALIGNOF(T), "");
static_assert(alignof(T) == __alignof(T), "");
#if TEST_STD_VER >= 11
static_assert(_LIBCPP_ALIGNOF(T) == alignof(T), "");
#endif