]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/math/test/cardinal_quintic_b_spline_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / math / test / cardinal_quintic_b_spline_test.cpp
index 31b9fd9100acd2b87b792d8e41389095b60ca336..de2d87f15da6c187f107a1f7309715ae2f6a136d 100644 (file)
@@ -267,24 +267,35 @@ void test_quadratic_estimate_derivatives()
 int main()
 {
     test_constant<double>();
+#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
     test_constant<long double>();
+#endif
 
     test_constant_estimate_derivatives<double>();
+#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
     test_constant_estimate_derivatives<long double>();
+#endif
 
     test_linear<float>();
     test_linear<double>();
+#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
     test_linear<long double>();
+#endif
 
     test_linear_estimate_derivatives<double>();
+#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
     test_linear_estimate_derivatives<long double>();
+#endif
 
     test_quadratic<double>();
+#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
     test_quadratic<long double>();
+#endif
 
     test_quadratic_estimate_derivatives<double>();
+#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
     test_quadratic_estimate_derivatives<long double>();
-
+#endif
 
     #ifdef BOOST_HAS_FLOAT128
         test_constant<float128>();