]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/geometry/test/util/math_sqrt.cpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / geometry / test / util / math_sqrt.cpp
index 2ca4834a156bca912fc774787d90aecee864feb5..0907990ab92a5ef2dab4cd90fd3d5aefbce09e99 100644 (file)
 #include <boost/geometry/util/math.hpp>
 #include <boost/geometry/algorithms/not_implemented.hpp>
 
-#ifdef HAVE_TTMATH
-#  include <boost/geometry/extensions/contrib/ttmath_stub.hpp>
-#endif
-
 namespace bg = boost::geometry;
 
 
@@ -142,12 +138,4 @@ BOOST_AUTO_TEST_CASE( test_math_sqrt_custom )
     check_sqrt<custom1, custom1>::apply(custom1(2.0), custom1(sqrt2));
     check_sqrt<custom2, custom2>::apply(custom2(2.0), custom2(sqrt2));
     check_sqrt<custom3, custom3>::apply(custom3(2.0), custom3(sqrt2));
-
-#ifdef HAVE_TTMATH
-    typedef ttmath_big custom4;
-    typedef ttmath::Big<1, 4> custom5;
-
-    check_sqrt<custom4, custom4>::apply(custom4(2.0), custom4(sqrt2));
-    check_sqrt<custom5, custom5>::apply(custom5(2.0), custom5(sqrt2));
-#endif
 }