From: Daniel Arndt Date: Thu, 18 Jul 2019 20:15:54 +0000 (-0400) Subject: Address unused variables X-Git-Tag: v9.2.0-rc1~1337^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7fad16895b97cb8dfa350c8ddf6cf534a352a1a8;p=dealii.git Address unused variables --- diff --git a/bundled/boost-1.70.0/include/boost/math/special_functions/detail/bessel_k0.hpp b/bundled/boost-1.70.0/include/boost/math/special_functions/detail/bessel_k0.hpp index c24d89093c..a6d9da9114 100644 --- a/bundled/boost-1.70.0/include/boost/math/special_functions/detail/bessel_k0.hpp +++ b/bundled/boost-1.70.0/include/boost/math/special_functions/detail/bessel_k0.hpp @@ -81,7 +81,7 @@ const typename bessel_k0_initializer::init bessel_k0_initializer template -T bessel_k0_imp(const T& x, const mpl::int_&) +T bessel_k0_imp(const T&, const mpl::int_&) { BOOST_ASSERT(0); return 0; diff --git a/bundled/boost-1.70.0/include/boost/math/special_functions/detail/bessel_k1.hpp b/bundled/boost-1.70.0/include/boost/math/special_functions/detail/bessel_k1.hpp index 4a851a67d2..40b913bf76 100644 --- a/bundled/boost-1.70.0/include/boost/math/special_functions/detail/bessel_k1.hpp +++ b/bundled/boost-1.70.0/include/boost/math/special_functions/detail/bessel_k1.hpp @@ -82,7 +82,7 @@ namespace boost { namespace math { namespace detail{ template - inline T bessel_k1_imp(const T& x, const mpl::int_&) + inline T bessel_k1_imp(const T&, const mpl::int_&) { BOOST_ASSERT(0); return 0;