This commit is contained in:
Vladimir C 2022-02-14 12:36:30 +01:00 committed by GitHub
parent d40275af4f
commit ebd93d07e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,7 @@
#include <limits>
#include <boost/multiprecision/cpp_bin_float.hpp>
#include <boost/math/special_functions/fpclassify.hpp>
/// Use same extended double for all platforms
#if (LDBL_MANT_DIG == 64)
@ -288,7 +289,7 @@ struct integer<Bits, Signed>::_impl
}
else
{
if (!boost::isfinite(t))
if (!boost::math::isfinite(t))
{
self = 0;
return;