Index: boost/math/special_functions/airy.hpp =================================================================== --- boost/math/special_functions/airy.hpp (revision 85073) +++ boost/math/special_functions/airy.hpp (working copy) @@ -340,13 +340,6 @@ inline T airy_ai_zero(unsigned m, const Policy& pol) { BOOST_FPU_EXCEPTION_GUARD - typedef typename policies::evaluation::type value_type; - typedef typename policies::normalise< - Policy, - policies::promote_float, - policies::promote_double, - policies::discrete_quantile<>, - policies::assert_undefined<> >::type forwarding_policy; BOOST_STATIC_ASSERT_MSG(false == std::numeric_limits::is_integer, "Airy return type must be a floating-point type."); return policies::checked_narrowing_cast(detail::airy_ai_zero_imp(m, pol), "boost::math::airy_ai_zero<%1%>(unsigned)"); } @@ -388,13 +381,6 @@ inline T airy_bi_zero(unsigned m, const Policy& pol) { BOOST_FPU_EXCEPTION_GUARD - typedef typename policies::evaluation::type value_type; - typedef typename policies::normalise< - Policy, - policies::promote_float, - policies::promote_double, - policies::discrete_quantile<>, - policies::assert_undefined<> >::type forwarding_policy; BOOST_STATIC_ASSERT_MSG(false == std::numeric_limits::is_integer, "Airy return type must be a floating-point type."); return policies::checked_narrowing_cast(detail::airy_bi_zero_imp(m, pol), "boost::math::airy_bi_zero<%1%>(unsigned)"); } Index: boost/math/special_functions/beta.hpp =================================================================== --- boost/math/special_functions/beta.hpp (revision 85073) +++ boost/math/special_functions/beta.hpp (working copy) @@ -1331,7 +1331,6 @@ BOOST_FPU_EXCEPTION_GUARD typedef typename tools::promote_args::type result_type; typedef typename policies::evaluation::type value_type; - typedef typename lanczos::lanczos::type evaluation_type; typedef typename policies::normalise< Policy, policies::promote_float, @@ -1349,7 +1348,6 @@ BOOST_FPU_EXCEPTION_GUARD typedef typename tools::promote_args::type result_type; typedef typename policies::evaluation::type value_type; - typedef typename lanczos::lanczos::type evaluation_type; typedef typename policies::normalise< Policy, policies::promote_float,