Update max_align_test.cpp

This commit is contained in:
Peter Dimov
2023-01-25 01:52:18 +02:00
parent 5632ee0367
commit ece7a9ad9c
2 changed files with 22 additions and 6 deletions

View File

@@ -26,12 +26,16 @@ union max_align_t
int i;
long l;
#ifndef BOOST_NO_LONG_LONG
#if !defined(BOOST_NO_LONG_LONG)
boost::long_long_type ll;
#endif
#ifdef BOOST_HAS_INT128
#if defined(BOOST_HAS_INT128)
boost::int128_type i128;
#endif
float f;
@@ -39,7 +43,9 @@ union max_align_t
long double ld;
#if defined(BOOST_HAS_FLOAT128) || defined(__SIZEOF_FLOAT128__)
__float128 f128;
#endif
void* p;