1 --- foo/foo/foo/boost/math/special_functions/airy.hpp
2 +++ foo/foo/foo/boost/math/special_functions/airy.hpp
4 inline T airy_ai_zero(unsigned m, const Policy& pol)
6 BOOST_FPU_EXCEPTION_GUARD
7 - typedef typename policies::evaluation<T, Policy>::type value_type;
8 - typedef typename policies::normalise<
10 - policies::promote_float<false>,
11 - policies::promote_double<false>,
12 - policies::discrete_quantile<>,
13 - policies::assert_undefined<> >::type forwarding_policy;
14 BOOST_STATIC_ASSERT_MSG(false == std::numeric_limits<T>::is_integer, "Airy return type must be a floating-point type.");
15 return policies::checked_narrowing_cast<T, Policy>(detail::airy_ai_zero_imp<T>(m, pol), "boost::math::airy_ai_zero<%1%>(unsigned)");
18 inline T airy_bi_zero(unsigned m, const Policy& pol)
20 BOOST_FPU_EXCEPTION_GUARD
21 - typedef typename policies::evaluation<T, Policy>::type value_type;
22 - typedef typename policies::normalise<
24 - policies::promote_float<false>,
25 - policies::promote_double<false>,
26 - policies::discrete_quantile<>,
27 - policies::assert_undefined<> >::type forwarding_policy;
28 BOOST_STATIC_ASSERT_MSG(false == std::numeric_limits<T>::is_integer, "Airy return type must be a floating-point type.");
29 return policies::checked_narrowing_cast<T, Policy>(detail::airy_bi_zero_imp<T>(m, pol), "boost::math::airy_bi_zero<%1%>(unsigned)");
31 --- foo/foo/foo/boost/multi_array/base.hpp
32 +++ foo/foo/foo/boost/multi_array/base.hpp
34 // the "far side" of the range (the top if stride is positive, the bottom
35 // if stride is negative).
36 index bound_adjustment = stride < 0 ? 1 : 0;
37 + (void) bound_adjustment;
38 BOOST_ASSERT(((index_bases[n] - bound_adjustment) <= finish) &&
39 (finish <= (index_bases[n] + index(extents[n]) - bound_adjustment)));
40 #endif // BOOST_DISABLE_ASSERTS
41 --- foo/foo/foo/boost/unordered/detail/table.hpp
42 +++ foo/foo/foo/boost/unordered/detail/table.hpp
44 // According to 23.2.1.8, if propagate_on_container_swap is
45 // false the behaviour is undefined unless the allocators
48 BOOST_ASSERT(node_alloc() == other.node_alloc());