]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/math/special_functions/powm1.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / math / special_functions / powm1.hpp
index 37db8746c8aba3c40edcb4c6153cec724a21b202..a8656fde818f281fe7772da25823a4ccb603d047 100644 (file)
@@ -34,7 +34,7 @@ inline T powm1_imp(const T x, const T y, const Policy& pol)
          // so just try it and see:
          T l = y * log(x);
          if (l < 0.5)
-            return boost::math::expm1(l);
+            return boost::math::expm1(l, pol);
          if (l > boost::math::tools::log_max_value<T>())
             return boost::math::policies::raise_overflow_error<T>(function, 0, pol);
          // fall through....