Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / external / boost / boost_1_63_0.undef.warning.patch.1
blob2773138e276582bab57cf2ef4492f09f3b53687d
1 diff -up boost/boost/math/special_functions/fpclassify.hpp.dt boost/boost/math/special_functions/fpclassify.hpp
2 --- boost/boost/math/special_functions/fpclassify.hpp.dt        2017-02-03 07:59:18.805415876 +0100
3 +++ boost/boost/math/special_functions/fpclassify.hpp   2017-02-03 08:00:45.046494362 +0100
4 @@ -134,7 +134,7 @@ inline bool is_nan_helper(T, const boost
5  inline bool is_nan_helper(__float128 f, const boost::true_type&) { return ::isnanq(f); }
6  inline bool is_nan_helper(__float128 f, const boost::false_type&) { return ::isnanq(f); }
7  #elif defined(BOOST_GNU_STDLIB) && BOOST_GNU_STDLIB && \
8 -      _GLIBCXX_USE_C99_MATH && !_GLIBCXX_USE_C99_FP_MACROS_DYNAMIC
9 +      _GLIBCXX_USE_C99_MATH && (!defined(_GLIBCXX_USE_C99_FP_MACROS_DYNAMIC) || !_GLIBCXX_USE_C99_FP_MACROS_DYNAMIC)
10  inline bool is_nan_helper(__float128 f, const boost::true_type&) { return std::isnan(static_cast<double>(f)); }
11  inline bool is_nan_helper(__float128 f, const boost::false_type&) { return std::isnan(static_cast<double>(f)); }
12  #else