Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r83059 - trunk/libs/math/example
From: pbristow_at_[hidden]
Date: 2013-02-21 05:22:06


Author: pbristow
Date: 2013-02-21 05:22:05 EST (Thu, 21 Feb 2013)
New Revision: 83059
URL: http://svn.boost.org/trac/boost/changeset/83059

Log:
Cosmetic.
Text files modified:
   trunk/libs/math/example/bessel_zeros_example.cpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/libs/math/example/bessel_zeros_example.cpp
==============================================================================
--- trunk/libs/math/example/bessel_zeros_example.cpp (original)
+++ trunk/libs/math/example/bessel_zeros_example.cpp 2013-02-21 05:22:05 EST (Thu, 21 Feb 2013)
@@ -321,7 +321,7 @@
   { // m = inf
      double inf = std::numeric_limits<double>::infinity();
      double inf_root = boost::math::cyl_bessel_j_zero(0.0, inf);
- // warning C4244: 'argument' : conversion from 'double' to 'int', possible loss of data
+ // warning C4244: 'argument' : conversion from 'double' to 'int', possible loss of data.
      std::cout << "boost::math::cyl_bessel_j_zero(0.0, inf) " << inf_root << std::endl;
      // Throw exception Error in function boost::math::cyl_bessel_j_zero<long double>(long double, int):
      // Requested the 0'th zero, but must be > 0 !
@@ -336,7 +336,7 @@
   { // m = NaN
      double nan = std::numeric_limits<double>::quiet_NaN();
      double nan_root = boost::math::cyl_bessel_j_zero(0.0, nan);
- // warning C4244: 'argument' : conversion from 'double' to 'int', possible loss of data
+ // warning C4244: 'argument' : conversion from 'double' to 'int', possible loss of data.
      std::cout << "boost::math::cyl_bessel_j_zero(0.0, nan) " << nan_root << std::endl;
      // Throw exception Error in function boost::math::cyl_bessel_j_zero<long double>(long double, int):
      // Requested the 0'th zero, but must be > 0 !


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