From 5ea617aefc7e2f5b086c2bdb89618f4458cd7708 Mon Sep 17 00:00:00 2001 From: AntonBikineev Date: Sun, 24 Nov 2013 21:00:23 +0400 Subject: [PATCH] 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 --- boost/math/special_functions/bessel_derivatives.hpp | 4 ++-- .../special_functions/detail/bessel_jy_derivatives_asym.hpp | 2 +- .../special_functions/detail/bessel_jy_derivatives_series.hpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/boost/math/special_functions/bessel_derivatives.hpp b/boost/math/special_functions/bessel_derivatives.hpp index 3da03561f..10e6b0eaa 100644 --- a/boost/math/special_functions/bessel_derivatives.hpp +++ b/boost/math/special_functions/bessel_derivatives.hpp @@ -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); diff --git a/boost/math/special_functions/detail/bessel_jy_derivatives_asym.hpp b/boost/math/special_functions/detail/bessel_jy_derivatives_asym.hpp index df73bc895..318661652 100644 --- a/boost/math/special_functions/detail/bessel_jy_derivatives_asym.hpp +++ b/boost/math/special_functions/detail/bessel_jy_derivatives_asym.hpp @@ -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) diff --git a/boost/math/special_functions/detail/bessel_jy_derivatives_series.hpp b/boost/math/special_functions/detail/bessel_jy_derivatives_series.hpp index e23a04ebb..31c55038e 100644 --- a/boost/math/special_functions/detail/bessel_jy_derivatives_series.hpp +++ b/boost/math/special_functions/detail/bessel_jy_derivatives_series.hpp @@ -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)