]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/math/reporting/performance/test_gcd.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / math / reporting / performance / test_gcd.cpp
index f9793a02b98b51db157b1e7eaae31a71737fd8c6..ed37af9fe5a4a0c4653c035fb62ef42dcc44b4cb 100644 (file)
@@ -273,8 +273,8 @@ T generate_random(unsigned bits_wanted)
 template <typename N>
 N gcd_stein(N m, N n)
 {
-   BOOST_ASSERT(m >= static_cast<N>(0));
-   BOOST_ASSERT(n >= static_cast<N>(0));
+   BOOST_MATH_ASSERT(m >= static_cast<N>(0));
+   BOOST_MATH_ASSERT(n >= static_cast<N>(0));
    if(m == N(0)) return n;
    if(n == N(0)) return m;
            // m > 0 && n > 0