mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-09 11:12:21 +00:00
Merge branch 'develop' of https://github.com/boostorg/geometry into feature/is_simple
This commit is contained in:
@@ -118,10 +118,13 @@ BOOST_AUTO_TEST_CASE( test_math_sqrt_fundamental )
|
||||
check_sqrt<short, double>::apply(2, sqrt2);
|
||||
check_sqrt<int, double>::apply(2, sqrt2);
|
||||
check_sqrt<long, double>::apply(2L, sqrt2);
|
||||
#if ( __cplusplus >= 201103L )
|
||||
#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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user