]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/math/test/test_beta_hooks.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / math / test / test_beta_hooks.hpp
index 4f512cd5396939a9e3bcc3845bb77df4d11642c9..071b8633711e00abbcb433e16a5cac81a843f5af 100644 (file)
@@ -21,7 +21,7 @@ inline float beta(float a, float b)
 { return betaf(a, b); }
 inline long double beta(long double a, long double b)
 {
-#ifdef BOOST_MSVC
+#ifdef _MSC_VER
    return beta((double)a, (double)b); 
 #else
    return betal(a, b); 
@@ -33,7 +33,7 @@ inline double ibeta(double a, double b, double x)
 { return incbet(a, b, x); }
 inline long double ibeta(long double a, long double b, long double x)
 {
-#ifdef BOOST_MSVC
+#ifdef _MSC_VER
    return incbet((double)a, (double)b, (double)x); 
 #else
    return incbetl(a, b);