You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
compiling mrcpp yields some compiler warnings in Fedora 35. The most common issue appears to be the comparison between signed and unsigned which arises from the use of int as loop indices checked against .size() which returns the size type, size_t. The loop indices could probably be all switched to size_t, what do you think?
Additionally, running static code analysis on the repository yields unclean results; output from cppcheck 2.6 attached cppcheck.log
.
The text was updated successfully, but these errors were encountered:
compiling mrcpp yields some compiler warnings in Fedora 35. The most common issue appears to be the comparison between signed and unsigned which arises from the use of
int
as loop indices checked against.size()
which returns the size type,size_t
. The loop indices could probably be all switched tosize_t
, what do you think?Additionally, running static code analysis on the repository yields unclean results; output from cppcheck 2.6 attached
cppcheck.log
.
The text was updated successfully, but these errors were encountered: