-
Notifications
You must be signed in to change notification settings - Fork 367
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
Fix warnings regarding int-type variables #3026
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR. I added one suggestion to ensure consistency.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, as long as the changes by @heplesser get integrated.
@muffgaga , this seems to be basically complete except for the suggested change. Could you also add a description to this PR? The current sentence seems to have little relation to what your proposed change is. |
This commit fixes build-time warnings from the compiler that I encountered in my local build. It cleans up comparisons between unsigned size-like types (e.g. size_t) and signed indices (long/int).
Done, description also added to the commit (wasn't sure if adding text to the PR-opening comment is sufficient). |
This PR fixes build-time warnings from the compiler that I encountered in my local build.
It cleans up comparisons between unsigned size-like types (e.g.
size_t
) and signed indices (long
/int
).Sorry for the close (of #3025)/reopen, github reacted weird when I pushed with full reference name
refs/heads/fix_warnings2
…