From 7c545120dfdca19e1c669c43a39a4fcb988e8aa0 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 28 Aug 2008 16:06:08 +0000 Subject: [PATCH] Fully qualify function calls to keep Borland happy. [SVN r48421] --- include/boost/math/special_functions/asinh.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {