-
Notifications
You must be signed in to change notification settings - Fork 37
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 a Clang Static Analyzer warning that the variable is not used #56
base: master
Are you sure you want to change the base?
Conversation
@@ -605,6 +605,7 @@ void IrcBufferModelPrivate::_irc_restoreBuffers() | |||
chans.clear(); | |||
keys.clear(); | |||
joinCommandLength = joinCommandMinLength; | |||
(void)joinCommandLength; // Fix a Static Analyzer warning that the variable is never read |
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.
we probably shouldn't hide the issue but check if it's actually a bug that it's not used... @Venemo can you check this?
Codecov Report
@@ Coverage Diff @@
## master #56 +/- ##
=======================================
Coverage 93.62% 93.62%
=======================================
Files 58 58
Lines 4847 4847
=======================================
Hits 4538 4538
Misses 309 309
Continue to review full report at Codecov.
|
No description provided.