]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/math/test/compile_test/gauss_concept_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / math / test / compile_test / gauss_concept_test.cpp
index 85ad3a67b1f07c3d78ebd21eefd754bce823414c..fbd758eacd6faf66a37126cd732735279503de03 100644 (file)
@@ -3,10 +3,13 @@
 //  Boost Software License, Version 1.0. (See accompanying file
 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 //
+
+// Test requires the use of lexical cast in tools/big_constant.hpp
+#ifndef BOOST_MATH_STANDALONE
+
 #include <boost/math/concepts/std_real_concept.hpp>
 #include <boost/math/quadrature/gauss.hpp>
 
-
 void compile_and_link_test()
 {
     boost::math::concepts::std_real_concept a = 0;
@@ -15,3 +18,5 @@ void compile_and_link_test()
     boost::math::quadrature::gauss<boost::math::concepts::std_real_concept, 7> integrator;
     integrator.integrate(f, a, b);
 }
+
+#endif