Fix bad _LIBCPP_ALIGNOF test

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@347790 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier
2018-11-28 18:32:16 +00:00
parent 7593e799d2
commit cf99ab780c

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