Add missing qualifier to isnan call.

This commit is contained in:
jzmaddock
2016-08-07 19:12:03 +01:00
committed by GitHub
parent 2adf5c2cf8
commit 7c34000953

View File

@@ -887,8 +887,8 @@ void test_float_funcs(const boost::mpl::true_&)
{
a = std::numeric_limits<Real>::quiet_NaN();
b = modf(a, &c);
BOOST_CHECK((isnan)(b));
BOOST_CHECK((isnan)(c));
BOOST_CHECK((boost::math::isnan)(b));
BOOST_CHECK((boost::math::isnan)(c));
}
a = 4;