|
Boost-Commit : |
From: john_at_[hidden]
Date: 2008-08-28 12:06:08
Author: johnmaddock
Date: 2008-08-28 12:06:08 EDT (Thu, 28 Aug 2008)
New Revision: 48421
URL: http://svn.boost.org/trac/boost/changeset/48421
Log:
Fully qualify function calls to keep Borland happy.
Text files modified:
trunk/boost/math/special_functions/asinh.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/math/special_functions/asinh.hpp
==============================================================================
--- trunk/boost/math/special_functions/asinh.hpp (original)
+++ trunk/boost/math/special_functions/asinh.hpp 2008-08-28 12:06:08 EDT (Thu, 28 Aug 2008)
@@ -57,7 +57,7 @@
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
{
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk