[test][util] replace 2LL literal by boost::long_long_type(2)

This commit is contained in:
Menelaos Karavelas 2014-06-16 14:36:11 +03:00
parent c48fd6f903
commit d265965b2e

View File

@ -121,7 +121,10 @@ BOOST_AUTO_TEST_CASE( test_math_sqrt_fundamental )
#if !defined(BOOST_NO_LONG_LONG)
check_sqrt<long long, double>::apply(2LL, sqrt2);
#endif
check_sqrt<boost::long_long_type, double>::apply(2LL, sqrt2);
check_sqrt
<
boost::long_long_type, double
>::apply(boost::long_long_type(2), sqrt2);
}