Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 580078
Collapse All | Expand All

(-)passenger-5.1.1.orig/src/cxx_supportlib/vendor-modified/boost/math/special_functions/fpclassify.hpp (-2 / +2 lines)
Lines 134-141 Link Here
134
inline bool is_nan_helper(__float128 f, const boost::true_type&) { return ::isnanq(f); }
134
inline bool is_nan_helper(__float128 f, const boost::true_type&) { return ::isnanq(f); }
135
inline bool is_nan_helper(__float128 f, const boost::false_type&) { return ::isnanq(f); }
135
inline bool is_nan_helper(__float128 f, const boost::false_type&) { return ::isnanq(f); }
136
#else
136
#else
137
inline bool is_nan_helper(__float128 f, const boost::true_type&) { return ::isnan(static_cast<double>(f)); }
137
inline bool is_nan_helper(__float128 f, const boost::true_type&) { return std::isnan(static_cast<double>(f)); }
138
inline bool is_nan_helper(__float128 f, const boost::false_type&) { return ::isnan(static_cast<double>(f)); }
138
inline bool is_nan_helper(__float128 f, const boost::false_type&) { return std::isnan(static_cast<double>(f)); }
139
#endif
139
#endif
140
#endif
140
#endif
141
}
141
}

Return to bug 580078