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
This seems too simple to be worth a pull request but line 50 in fruit/impl/data_structures/semistatic_map.h
fruit/impl/data_structures/semistatic_map.h
std::numeric_limits<NumBits>::max() needs to be changed to (std::numeric_limits<NumBits>::max)()
std::numeric_limits<NumBits>::max()
(std::numeric_limits<NumBits>::max)()
To fix a mix up with the max macro from a Window's header (extra info: https://stackoverflow.com/questions/27442885/syntax-error-with-stdnumeric-limitsmax)
The text was updated successfully, but these errors were encountered:
Add a pair of parentheses so that a use of a "max" function in Fruit …
125c403
…don't get expanded by a macro on Windows. See #127.
Hi, thanks for reporting! I fixed this in 125c403.
Sorry, something went wrong.
No branches or pull requests
This seems too simple to be worth a pull request but line 50 in
fruit/impl/data_structures/semistatic_map.h
std::numeric_limits<NumBits>::max()
needs to be changed to
(std::numeric_limits<NumBits>::max)()
To fix a mix up with the max macro from a Window's header (extra info: https://stackoverflow.com/questions/27442885/syntax-error-with-stdnumeric-limitsmax)
The text was updated successfully, but these errors were encountered: