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
Building cryptopp-cmake v8.9.0 with cmake v3.22.1 under Android Studio on Windows 10 produces the following warning:
cryptopp-cmake
cmake
C/C++: ninja: Entering directory `[...]' C/C++: [...]/cryptopp-cmake/cryptopp/validat1.cpp:1053:31: warning: variable 'j' set but not used [-Wunused-but-set-variable] C/C++: 1053 | for (unsigned int j=0; !source.AnyRetrievable(); ++j) C/C++: | ^ C/C++: 1 warning generated.
The text was updated successfully, but these errors were encountered:
I'm not sure why for loop is used, probably it should have been while (!source.AnyRetrievable()) ?
for
while (!source.AnyRetrievable())
Sorry, something went wrong.
No branches or pull requests
Building
cryptopp-cmake
v8.9.0 withcmake
v3.22.1 under Android Studio on Windows 10 produces the following warning:The text was updated successfully, but these errors were encountered: