#ifndef _LIBCPP___TYPE_TRAITS_ALIGNED_UNION_H
#define _LIBCPP___TYPE_TRAITS_ALIGNED_UNION_H
#include <__config>
#include <__type_traits/aligned_storage.h>
#include <__type_traits/integral_constant.h>
#include <cstddef>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
template <size_t _I0, size_t... _In>
struct __static_max;
__static_max<_I0>;
__static_max<_I0, _I1, _In...>;
template <size_t _Len, class _Type0, class... _Types>
struct _LIBCPP_DEPRECATED_IN_CXX23 aligned_union { … };
#if _LIBCPP_STD_VER >= 14
aligned_union_t;
#endif
_LIBCPP_END_NAMESPACE_STD
#endif