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
There are plenty of deprecated out of line static constexpr declarations You can easy get rid of them with clang and
target_compile_options(glaze_glaze INTERFACE -Werror=deprecated-redundant-constexpr-static-def)
which will produce errors
error: out-of-line definition of constexpr static data member is redundant in C++17 and is deprecated
The text was updated successfully, but these errors were encountered:
I fixed one location of this error in #1200, however most of these occur due to https://github.com/fastfloat/fast_float, and I have raised an issue there for them to be fixed.
Sorry, something went wrong.
No branches or pull requests
There are plenty of deprecated out of line static constexpr declarations
You can easy get rid of them with clang and
target_compile_options(glaze_glaze INTERFACE -Werror=deprecated-redundant-constexpr-static-def)
which will produce errors
error: out-of-line definition of constexpr static data member is redundant in C++17 and is deprecated
The text was updated successfully, but these errors were encountered: