This fails to compile with clang ang libstdc++ 4.6
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351784
91177308-0d34-0410-b5e6-
96231b3b80d8
(has_deleted_move_constructor || has_trivial_move_constructor) &&
(has_deleted_copy_assign || has_trivial_copy_assign) &&
(has_deleted_copy_constructor || has_trivial_copy_constructor);
-
-#if (__has_feature(is_trivially_copyable) || (defined(__GNUC__) && __GNUC__ >= 5))
- static_assert(value == std::is_trivially_copyable<T>::value, "inconsistent behavior between llvm:: and std:: implementation of is_trivially_copyable");
-#endif
};