Closed
Description
In Multiprecision Issues like this we find stuff maybe relevant for Math.
- MSVC 14.0 does not comprehend
/std:c++17
and the CI run(s) should use[14, latest]
in the standard matrix. - MSVC 14.0 seems to not comprehend the preprocessor jargon for testing if it has the header
<stdfloat>
. We need to do some preprocessor exclusions around here. This one is probably running wild in the field so maybe we get to it for 1.84.
On the second topic, something like below?
#if !(defined(_MSC_VER) && (_MSC_VER <= 1900))
#if __has_include(<stdfloat>)
# include <stdfloat>
#endif
But I don't know 1f 14.1 comprehends __has_include
so we need to check that too.
Metadata
Metadata
Assignees
Labels
No labels