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
The following line leads to a signed/unsigned error on newer MSVC compilers (14.36.32532).
https://github.com/fmtlib/fmt/blame/f6ca4ea1990af67e00358cfe83c19f5aa4df5f19/include/fmt/format.h#L3036
Casting the value to the underlying datatype uint32_t solves the compiler issue.
uint32_t
std::uninitialized_fill_n(bigits_.data(), exp_difference, **static_cast<uint32_t>(0)**);
The text was updated successfully, but these errors were encountered:
I will close this issue in favour of the PR #3647
Sorry, something went wrong.
No branches or pull requests
The following line leads to a signed/unsigned error on newer MSVC compilers (14.36.32532).
https://github.com/fmtlib/fmt/blame/f6ca4ea1990af67e00358cfe83c19f5aa4df5f19/include/fmt/format.h#L3036
Casting the value to the underlying datatype
uint32_t
solves the compiler issue.The text was updated successfully, but these errors were encountered: