Enable aligned_union in C++03

llvm-svn: 364058
This commit is contained in:
Eric Fiselier 2019-06-21 14:45:08 +00:00
parent b6a9afa823
commit f044ebeb8d
2 changed files with 0 additions and 5 deletions

View File

@ -1797,7 +1797,6 @@ _CREATE_ALIGNED_STORAGE_SPECIALIZATION(0x4000);
#undef _CREATE_ALIGNED_STORAGE_SPECIALIZATION
#ifndef _LIBCPP_HAS_NO_VARIADICS
// aligned_union
@ -1831,8 +1830,6 @@ struct aligned_union
template <size_t _Len, class ..._Types> using aligned_union_t = typename aligned_union<_Len, _Types...>::type;
#endif
#endif // _LIBCPP_HAS_NO_VARIADICS
template <class _Tp>
struct __numeric_type
{

View File

@ -6,8 +6,6 @@
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03
// type_traits
// aligned_union<size_t Len, class ...Types>