forked from boostorg/config
Turned off 128 bit float for Embarcadero and updated 128 float test.
This commit is contained in:
@ -31,6 +31,9 @@
|
||||
#if defined(BOOST_HAS_INT128)
|
||||
#undef BOOST_HAS_INT128
|
||||
#endif
|
||||
#if defined(BOOST_HAS_FLOAT128)
|
||||
#undef BOOST_HAS_FLOAT128
|
||||
#endif
|
||||
|
||||
// 32 functions are missing from the current RTL in cwchar, so it really can not be used even if it exists
|
||||
|
||||
|
@ -22,6 +22,10 @@ int test()
|
||||
__float128 big_float = 0.0Q;
|
||||
#endif
|
||||
(void)&big_float;
|
||||
|
||||
__float128 i(2.00), j(1.00), k;
|
||||
k = i / j;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user