You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get a compiler warning when including <boost/geometry.hpp>, because it includes <promotion.hpp> which includes <stdfloat>
#if __has_include(<stdfloat>) // this resolves to true somehow
# include<stdfloat>
#endif
// at stdfloat
#if !_HAS_CXX23
_EMIT_STL_WARNING(STL4038, "The contents of <stdfloat> are available only with C++23 or later.");
#else// ^^^ !_HAS_CXX23 / _HAS_CXX23 vvv
may be replace #if __has_include(<stdfloat>) with #if __has_include(<stdfloat>) & _HAS_CXX23
The text was updated successfully, but these errors were encountered:
I get a compiler warning when including
<boost/geometry.hpp>
, because it includes<promotion.hpp>
which includes<stdfloat>
may be replace
#if __has_include(<stdfloat>)
with#if __has_include(<stdfloat>) & _HAS_CXX23
The text was updated successfully, but these errors were encountered: