diff --git a/include/boost/math/special_functions/asinh.hpp b/include/boost/math/special_functions/asinh.hpp index cf8a1327b..14289688b 100644 --- a/include/boost/math/special_functions/asinh.hpp +++ b/include/boost/math/special_functions/asinh.hpp @@ -57,7 +57,7 @@ namespace boost else if(x < 0.5f) { // As below, but rearranged to preserve digits: - return boost::math::log1p(x + sqrt1pm1(x * x, pol), pol); + return boost::math::log1p(x + boost::math::sqrt1pm1(x * x, pol), pol); } else {