-
Notifications
You must be signed in to change notification settings - Fork 849
Fix unused function parameters in the plugins functionality #11466
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
Conversation
JosiahWI
left a comment
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. It'd be great if we could remove a few of these unused parameters as well.
This was suggested during a review of the pull request
|
@JosiahWI |
JosiahWI
left a comment
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 cleanup!
|
Cherry-picked to v10.0.x |
* Fix unused function parameters in the plugins functionality * Completely remove some unused parameters in the plugins functionality This was suggested during a review of the pull request (cherry picked from commit 29fa13a)
Use
/* name ATS_UNUSED */for fully unused parameters.Use
[[maybe_unused]]attribute for conditionally unused parameters used in asserts.This pull request is part of the effort for removing the
-Wno-unused-parameterwarning suppression.