-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
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
Change the loop variable to size_t to remove the compilation warning #334
Conversation
This is typically done by declaring the loop variable, |
The type of itField has been changed to size_t. The title and comment of the PR are modified accordingly. |
Hi, and with this you do not need to cast |
At least from my observation, size_t works fine without casting inside the loop. I didn't receive any warning during the compilation. And I was able to produce the crosstalk map. |
No, this is done for you. But with comparisons, signed and unsigned values can be trickier, for example |
I think that with clang there are more warnings, but this should remove the two that appear with GCC. |
BEGINRELEASENOTES
ENDRELEASENOTES