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
See ninja-build/ninja#2531, there are shadow warnings when using MSVC /W4 or GCC/Clang -Wshadow=local:
/W4
-Wshadow=local
first one inside find_filled_bucket():
find_filled_bucket()
emhash/hash_table8.hpp
Lines 1325 to 1337 in afd962a
second one inside find_filled_slot():
find_filled_slot()
Lines 1360 to 1371 in afd962a
maybe the inner slot could be renamed to eslot (as in find_or_allocate()) or something else:
slot
eslot
find_or_allocate()
Lines 1494 to 1509 in afd962a
The text was updated successfully, but these errors were encountered:
configure.py --bootstrap
thanks, I have fixed the issues in latest version.
Sorry, something went wrong.
Thanks.
No branches or pull requests
See ninja-build/ninja#2531, there are shadow warnings when using MSVC
/W4
or GCC/Clang-Wshadow=local
:first one inside
find_filled_bucket()
:emhash/hash_table8.hpp
Lines 1325 to 1337 in afd962a
second one inside
find_filled_slot()
:emhash/hash_table8.hpp
Lines 1360 to 1371 in afd962a
maybe the inner
slot
could be renamed toeslot
(as infind_or_allocate()
) or something else:emhash/hash_table8.hpp
Lines 1494 to 1509 in afd962a
The text was updated successfully, but these errors were encountered: