Test __SIZEOF_FLOAT128__ as well, for g++ -m32

This commit is contained in:
Peter Dimov 2023-01-25 01:41:01 +02:00
parent 8052abb15c
commit 5632ee0367

View File

@ -38,7 +38,7 @@ union max_align_t
double d; double d;
long double ld; long double ld;
#ifdef BOOST_HAS_FLOAT128 #if defined(BOOST_HAS_FLOAT128) || defined(__SIZEOF_FLOAT128__)
__float128 f128; __float128 f128;
#endif #endif