]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/math/special_functions/modf.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / boost / math / special_functions / modf.hpp
index 3ce74e7aa3a56df2c02cdcd43bbb53ace751d342..75e6be9f46dc809c7ab176c10bd5d6a43b9bc50c 100644 (file)
@@ -52,19 +52,17 @@ inline T modf(const T& v, long* ipart)
    return modf(v, ipart, policies::policy<>());
 }
 
-#ifdef BOOST_HAS_LONG_LONG
 template <class T, class Policy>
-inline T modf(const T& v, boost::long_long_type* ipart, const Policy& pol)
+inline T modf(const T& v, long long* ipart, const Policy& pol)
 {
    *ipart = lltrunc(v, pol);
    return v - *ipart;
 }
 template <class T>
-inline T modf(const T& v, boost::long_long_type* ipart)
+inline T modf(const T& v, long long* ipart)
 {
    return modf(v, ipart, policies::policy<>());
 }
-#endif
 
 }} // namespaces