2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-27 07:02:08 +00:00

Fully qualify function calls to keep Borland happy.

[SVN r48421]
This commit is contained in:
John Maddock
2008-08-28 16:06:08 +00:00
parent fb02817e67
commit 7c545120df

View File

@@ -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
{