mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
fix
This commit is contained in:
parent
d40275af4f
commit
ebd93d07e5
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user