Blame SOURCES/boost-1.53.0-fpclassify-unused_typedef.patch

6e52e0
diff -up boost_1_53_0/boost/math/special_functions/sign.hpp\~ boost_1_53_0/boost/math/special_functions/sign.hpp
6e52e0
--- boost_1_53_0/boost/math/special_functions/sign.hpp~	2011-05-17 14:19:17.000000000 +0200
6e52e0
+++ boost_1_53_0/boost/math/special_functions/sign.hpp	2013-07-22 23:24:39.751342557 +0200
6e52e0
@@ -110,7 +110,6 @@ template<class T> int (signbit)(T x)
6e52e0
 { 
6e52e0
    typedef typename detail::fp_traits<T>::type traits;
6e52e0
    typedef typename traits::method method;
6e52e0
-   typedef typename boost::is_floating_point<T>::type fp_tag;
6e52e0
    return detail::signbit_impl(x, method());
6e52e0
 }
6e52e0
 
6e52e0
@@ -124,7 +123,6 @@ template<class T> T (changesign)(const T
6e52e0
 { //!< \brief return unchanged binary pattern of x, except for change of sign bit. 
6e52e0
    typedef typename detail::fp_traits<T>::sign_change_type traits;
6e52e0
    typedef typename traits::method method;
6e52e0
-   typedef typename boost::is_floating_point<T>::type fp_tag;
6e52e0
 
6e52e0
    return detail::changesign_impl(x, method());
6e52e0
 }
6e52e0
diff -up boost_1_53_0/boost/math/special_functions/fpclassify.hpp~ boost_1_53_0/boost/math/special_functions/fpclassify.hpp
6e52e0
--- boost_1_53_0/boost/math/special_functions/fpclassify.hpp~	2012-12-12 19:17:22.000000000 +0100
6e52e0
+++ boost_1_53_0/boost/math/special_functions/fpclassify.hpp	2013-07-22 12:07:59.478713488 +0200
6e52e0
@@ -327,7 +327,6 @@ inline bool (isfinite)(T x)
6e52e0
 { //!< \brief return true if floating-point type t is finite.
6e52e0
    typedef typename detail::fp_traits<T>::type traits;
6e52e0
    typedef typename traits::method method;
6e52e0
-   typedef typename boost::is_floating_point<T>::type fp_tag;
6e52e0
    typedef typename tools::promote_args<T>::type value_type;
6e52e0
    return detail::isfinite_impl(static_cast<value_type>(x), method());
6e52e0
 }
6e52e0
@@ -338,7 +338,6 @@ inline bool (isfinite)(long double x)
6e52e0
 { //!< \brief return true if floating-point type t is finite.
6e52e0
    typedef detail::fp_traits<long double>::type traits;
6e52e0
    typedef traits::method method;
6e52e0
-   typedef boost::is_floating_point<long double>::type fp_tag;
6e52e0
    typedef long double value_type;
6e52e0
    return detail::isfinite_impl(static_cast<value_type>(x), method());
6e52e0
 }
6e52e0
@@ -398,7 +397,6 @@ inline bool (isnormal)(T x)
6e52e0
 {
6e52e0
    typedef typename detail::fp_traits<T>::type traits;
6e52e0
    typedef typename traits::method method;
6e52e0
-   typedef typename boost::is_floating_point<T>::type fp_tag;
6e52e0
    typedef typename tools::promote_args<T>::type value_type;
6e52e0
    return detail::isnormal_impl(static_cast<value_type>(x), method());
6e52e0
 }
6e52e0
@@ -409,7 +408,6 @@ inline bool (isnormal)(long double x)
6e52e0
 {
6e52e0
    typedef detail::fp_traits<long double>::type traits;
6e52e0
    typedef traits::method method;
6e52e0
-   typedef boost::is_floating_point<long double>::type fp_tag;
6e52e0
    typedef long double value_type;
6e52e0
    return detail::isnormal_impl(static_cast<value_type>(x), method());
6e52e0
 }
6e52e0
@@ -487,7 +485,6 @@ inline bool (isinf)(T x)
6e52e0
 {
6e52e0
    typedef typename detail::fp_traits<T>::type traits;
6e52e0
    typedef typename traits::method method;
6e52e0
-   typedef typename boost::is_floating_point<T>::type fp_tag;
6e52e0
    typedef typename tools::promote_args<T>::type value_type;
6e52e0
    return detail::isinf_impl(static_cast<value_type>(x), method());
6e52e0
 }
6e52e0
@@ -498,7 +496,6 @@ inline bool (isinf)(long double x)
6e52e0
 {
6e52e0
    typedef detail::fp_traits<long double>::type traits;
6e52e0
    typedef traits::method method;
6e52e0
-   typedef boost::is_floating_point<long double>::type fp_tag;
6e52e0
    typedef long double value_type;
6e52e0
    return detail::isinf_impl(static_cast<value_type>(x), method());
6e52e0
 }
6e52e0
@@ -570,7 +567,6 @@ inline bool (isnan)(T x)
6e52e0
 { //!< \brief return true if floating-point type t is NaN (Not A Number).
6e52e0
    typedef typename detail::fp_traits<T>::type traits;
6e52e0
    typedef typename traits::method method;
6e52e0
-   typedef typename boost::is_floating_point<T>::type fp_tag;
6e52e0
    return detail::isnan_impl(x, method());
6e52e0
 }
6e52e0
 
6e52e0
6e52e0
Diff finished.  Mon Jul 22 12:09:24 2013