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
I noticed that a few "Unused Variable" warnings were missed during the previous sweep. Thought it would be helpful to point them out in the inline file:
I noticed that a few "Unused Variable" warnings were missed during the previous sweep. Thought it would be helpful to point them out in the inline file:
Line: 34873 - 34875, changed to:
//static void allow_exceptions(bool enable) {use_exceptions = enable;}
//static void show_requests(bool enable) {log_requests = enable;}
//static void show_replies(bool enable) {log_replies = enable;}
Line added at 29769:
(void)content_length;
Not sure why it gets flagged as unused variable, but voiding it out before the return statement helps.
Again, thanks for the work you've done.
The text was updated successfully, but these errors were encountered: