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
Visual Studio 2022 generates the following warning in /W4 pedantic mode:
fmt/format-inl.h(1145,60): warning C4310: cast truncates constant value
On the following code fragment:
const uint32_t mod_inv_25 = uint32_t(uint64_t(mod_inv_5) * mod_inv_5);
The text was updated successfully, but these errors were encountered:
Fixing all possible warnings is a non-goal but a PR to suppress it would be welcome provided that it's not too intrusive.
Sorry, something went wrong.
Thanks! Yes, I usually try to fix pedantic warnings by myself and provide a PR in order not to disturb too much.
Visual Studio 2022: fmt/format-inl.h(1145,60): warning C4310: cast tr…
70db193
…uncates constant value #3287 (#3288)
No branches or pull requests
Visual Studio 2022 generates the following warning in /W4 pedantic mode:
On the following code fragment:
The text was updated successfully, but these errors were encountered: