Skip to content

Commit

Permalink
Merge pull request #1057 from boostorg/libstdc++14
Browse files Browse the repository at this point in the history
Fix cstdfloat numeric limits detection macro for libstdc++14
  • Loading branch information
mborland authored Dec 13, 2023
2 parents e0c17f6 + b3a21bc commit 0238802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/math/cstdfloat/cstdfloat_limits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#pragma GCC system_header
#endif

#if defined(BOOST_CSTDFLOAT_HAS_INTERNAL_FLOAT128_T) && defined(BOOST_MATH_USE_FLOAT128) && !defined(BOOST_CSTDFLOAT_NO_LIBQUADMATH_SUPPORT) && (!defined(__GNUC__) || (defined(__GNUC__) && __GNUC__ < 14))
#if defined(BOOST_CSTDFLOAT_HAS_INTERNAL_FLOAT128_T) && defined(BOOST_MATH_USE_FLOAT128) && !defined(BOOST_CSTDFLOAT_NO_LIBQUADMATH_SUPPORT) && (!defined(_GLIBCXX_RELEASE) || (defined(_GLIBCXX_RELEASE) && _GLIBCXX_RELEASE < 14))

#include <limits>
#include <boost/math/tools/nothrow.hpp>
Expand Down

0 comments on commit 0238802

Please sign in to comment.