Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r79813 - trunk/boost/math/special_functions
From: pbristow_at_[hidden]
Date: 2012-07-31 07:26:45


Author: pbristow
Date: 2012-07-31 07:26:45 EDT (Tue, 31 Jul 2012)
New Revision: 79813
URL: http://svn.boost.org/trac/boost/changeset/79813

Log:
Remove tabs and () max call.
Text files modified:
   trunk/boost/math/special_functions/owens_t.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/boost/math/special_functions/owens_t.hpp
==============================================================================
--- trunk/boost/math/special_functions/owens_t.hpp (original)
+++ trunk/boost/math/special_functions/owens_t.hpp 2012-07-31 07:26:45 EDT (Tue, 31 Jul 2012)
@@ -219,7 +219,7 @@
             BOOST_MATH_STD_USING
             using namespace boost::math::constants;
 
- const unsigned short m = 20;
+ const unsigned short m = 20;
 
             static const RealType c2[] =
             {
@@ -595,7 +595,7 @@
                term = one_minus_dj_sum * a_pow / (2 * j + 1);
                c = b - c;
                sum += c * term;
- abs_err += ldexp(std::max(T(fabs(sum)), T(fabs(c*term))), -tools::digits<T>());
+ abs_err += ldexp((std::max)(T(fabs(sum)), T(fabs(c*term))), -tools::digits<T>());
                b = (j + n) * (j - n) * b / ((j + T(0.5)) * (j + 1));
                ++j;
                //


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