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:
@@ -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);
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user