Skip to content

Findings from CI in Multiprecision on MSVC 14_0 #1016

Closed
@ckormanyos

Description

@ckormanyos

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions