]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/math/special_functions/ellint_rc.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / math / special_functions / ellint_rc.hpp
index 846c752a1461b666987569fd7ec2dc33e6152ec5..1fa7afc55cff62a0c6ef3d2e0edc700fad9111d3 100644 (file)
@@ -77,7 +77,7 @@ T ellint_rc_imp(T x, T y, const Policy& pol)
        if(y / x > 0.5)
        {
           T arg = sqrt((x - y) / x);
-          result = (boost::math::log1p(arg) - boost::math::log1p(-arg)) / (2 * sqrt(x - y));
+          result = (boost::math::log1p(arg, pol) - boost::math::log1p(-arg, pol)) / (2 * sqrt(x - y));
        }
        else
        {