-
-
Notifications
You must be signed in to change notification settings - Fork 968
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
Various minor code cleanups found by scan-build #6948
Conversation
@@ -154,6 +154,7 @@ static uint32 RotateRight(uint32 val, uint32 rot) | |||
{ | |||
/* Do not rotate more than necessary */ | |||
rot %= 32; | |||
assert(rot > 0); |
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.
Is "== 0" valid?
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.
The point it that it shouldn't be, as then you're doing val << 32
, which isn't defined all that well. If we want to just assume that it should be 0, that's a bit different.
That said, not sure why this exists at all, when ROR in bitmath_func.hpp exists.
The Doxygen config changes should probably be moved to a separate PR from the code cleanup. |
6391d50
to
8f7fbff
Compare
Various things found by running
scan-build sh -c './configure && make'
with all checkers turned on. Mostly missing null checks and dead code. Vast numbers of false positives that were ignored.Documentation fixes were found by going through the output of
doxygen
, ignoring missing documentation warnings. Nearly all fixed, but some left that aren't clear how to be fixed (usually related to attributes being referred to before they're declared? Maybe the explicit#
could be removed)Commits are almost entirely self-contained, so probably best to review individually