]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/math/test/test_erf_hooks.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / math / test / test_erf_hooks.hpp
index e1c42af508fea6cf94626fbefa0a2c4bbd5ee042..a06d883a7ef1e26a201b55051b2bd57c5eb532fc 100644 (file)
@@ -47,7 +47,7 @@ inline float erf(float a)
 { return erff(a); }
 inline long double erf(long double a)
 {
-#ifdef BOOST_MSVC
+#ifdef _MSC_VER
    return erf((double)a); 
 #else
    return erfl(a); 
@@ -62,7 +62,7 @@ inline float erfc(float a)
 { return erfcf(a); }
 inline long double erfc(long double a)
 {
-#ifdef BOOST_MSVC
+#ifdef _MSC_VER
    return erfc((double)a); 
 #else
    return erfcl(a);