fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / external / boost / boost.math.Wunused-local-typedefs.warnings.patch
blobe74c149f9e94bee6b23e7059bfd3ab42b2136a9c
1 --- a/b/boost/boost/math/special_functions/fpclassify.hpp 2013-05-31 14:02:13.660436127 +0200
2 +++ a/b/boost/boost/math/special_functions/fpclassify.hpp 2013-05-31 14:01:17.372246240 +0200
3 @@ -339,7 +338,6 @@
4 { //!< \brief return true if floating-point type t is finite.
5 typedef detail::fp_traits<long double>::type traits;
6 typedef traits::method method;
7 - typedef boost::is_floating_point<long double>::type fp_tag;
8 typedef long double value_type;
9 return detail::isfinite_impl(static_cast<value_type>(x), method());
11 @@ -410,7 +407,6 @@
13 typedef detail::fp_traits<long double>::type traits;
14 typedef traits::method method;
15 - typedef boost::is_floating_point<long double>::type fp_tag;
16 typedef long double value_type;
17 return detail::isnormal_impl(static_cast<value_type>(x), method());
19 @@ -499,7 +494,6 @@
21 typedef detail::fp_traits<long double>::type traits;
22 typedef traits::method method;
23 - typedef boost::is_floating_point<long double>::type fp_tag;
24 typedef long double value_type;
25 return detail::isinf_impl(static_cast<value_type>(x), method());
27 @@ -585,7 +578,6 @@
28 { //!< \brief return true if floating-point type t is NaN (Not A Number).
29 typedef detail::fp_traits<long double>::type traits;
30 typedef traits::method method;
31 - typedef boost::is_floating_point<long double>::type fp_tag;
32 return detail::isnan_impl(x, method());
34 #endif