We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simple fix is the wrap the word min and max in () such as:
static CONSTCD11 year (min)() NOEXCEPT { return year{-32767}; } static CONSTCD11 year (max)() NOEXCEPT { return year{32767}; }
Taking from fmtlib's handling of min and max this is the easiest way to fix this issue.
The text was updated successfully, but these errors were encountered:
Another good fix is to compile with NOMINMAX defined.
NOMINMAX
Sorry, something went wrong.
No branches or pull requests
Simple fix is the wrap the word min and max in () such as:
Taking from fmtlib's handling of min and max this is the easiest way to fix this issue.
The text was updated successfully, but these errors were encountered: