2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-28 19:32:08 +00:00

Fix: itrunk function is'not fully qualified for ADL lookup.

modified:   boost/math/special_functions/bessel_derivatives.hpp
	modified:   boost/math/special_functions/detail/bessel_jy_derivatives_asym.hpp
	modified:   boost/math/special_functions/detail/bessel_jy_derivatives_series.hpp
This commit is contained in:
AntonBikineev
2013-11-24 21:00:23 +04:00
parent c32cfb4e78
commit 5ea617aefc
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
// Copyright
// Copyright (c) 2013 Anton Bikineev
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -59,7 +59,7 @@ inline T cyl_bessel_j_derivative_imp(T v, T x, const Policy& pol)
if (floor(v) == v && v < 0)
{
v = -v;
if (boost::math::itrunc(v, pol) & 1)
if (itrunc(v, pol) & 1)
inversed = true;
}
T r = boost::math::detail::bessel_j_derivative_small_z_series(v, x, pol);

View File

@@ -1,4 +1,4 @@
// Copyright (c)
// Copyright (c) 2013 Anton Bikineev
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

View File

@@ -1,4 +1,4 @@
// Copyright (c)
// Copyright (c) 2013 Anton Bikineev
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)