mirror of
https://github.com/boostorg/geometry.git
synced 2025-05-09 23:24:02 +00:00
[test][util] guard use of boost::long_long_type inside a
BOOST_HAS_LONG_LONG block
This commit is contained in:
parent
bee0fdc0ae
commit
a7beb51f92
@ -121,10 +121,12 @@ BOOST_AUTO_TEST_CASE( test_math_sqrt_fundamental )
|
||||
#if !defined(BOOST_NO_LONG_LONG)
|
||||
check_sqrt<long long, double>::apply(2LL, sqrt2);
|
||||
#endif
|
||||
#ifdef BOOST_HAS_LONG_LONG
|
||||
check_sqrt
|
||||
<
|
||||
boost::long_long_type, double
|
||||
>::apply(boost::long_long_type(2), sqrt2);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user