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
Bug Report
Unused variable 'kMinExp' in to_chars.hpp, specifically in function:
template <typename FloatType> boundaries compute_boundaries(FloatType value)
then see:
constexpr int kMinExp = 1 - kBias;
Depending on level of compiler warnings/errors, this can fail a build.
Using cmake with ExternalProject_add() and building code with '-Wunused-variable' and '-Werror'
Successful build.
Compiler error.
Clang 4.0
develop
Released, but it looks to be a problem in the 'develop'
Yes.
The text was updated successfully, but these errors were encountered:
Could you open a PR and replace 1-kBias in line 207 with kMinExp?
1-kBias
kMinExp
Sorry, something went wrong.
I'll do that. I wasn't sure if there was a code bug in there, so I thought I'd raise the problem before making changes.
Fixed by merging #936.
nlohmann
No branches or pull requests
Bug Report
Unused variable 'kMinExp' in to_chars.hpp, specifically in function:
then see:
Depending on level of compiler warnings/errors, this can fail a build.
Using cmake with ExternalProject_add() and building code with '-Wunused-variable' and '-Werror'
Successful build.
Compiler error.
Clang 4.0
develop
branch?Released, but it looks to be a problem in the 'develop'
Yes.
The text was updated successfully, but these errors were encountered: