Skip to content

Commit

Permalink
Simplified condition for #including <stdfloat> thanks to gregmarr
Browse files Browse the repository at this point in the history
  • Loading branch information
bluetarpmedia committed Jan 11, 2024
1 parent e54142a commit 0ccf252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cpp2util.h
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
#endif
#include <stdexcept>
#if __has_include(<stdfloat>)
#if (defined(_MSC_VER) && _HAS_CXX23) || !defined(_MSC_VER)
#if !defined(_MSC_VER) || _HAS_CXX23
#include <stdfloat>
#endif
#endif
Expand Down

0 comments on commit 0ccf252

Please sign in to comment.