Skip to content
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

[codemod] Remove unused variables in github/presto-trunk/presto-native-execution/presto_cpp/main/tests/TaskManagerTest.cpp #22570

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

r-barnes
Copy link
Contributor

Summary:
LLVM-15 has a warning -Wunused-but-set-variable which we treat as an error because it's so often diagnostic of a code issue. Unused variables can compromise readability or, worse, performance.

This diff either (a) removes an unused variable and, possibly, it's associated code, or (b) qualifies the variable with [[maybe_unused]], mostly in cases where the variable is used, but, eg, in an assert statement that isn't present in production code.

  • If you approve of this diff, please use the "Accept & Ship" button :-)

Reviewed By: palmje

Differential Revision: D56253787

@r-barnes r-barnes requested a review from a team as a code owner April 19, 2024 16:11
@facebook-github-bot
Copy link
Collaborator

This pull request was exported from Phabricator. Differential Revision: D56253787

…e-execution/presto_cpp/main/tests/TaskManagerTest.cpp (prestodb#22570)

Summary:

LLVM-15 has a warning `-Wunused-but-set-variable` which we treat as an error because it's so often diagnostic of a code issue. Unused variables can compromise readability or, worse, performance.

This diff either (a) removes an unused variable and, possibly, it's associated code, or (b) qualifies the variable with `[[maybe_unused]]`, mostly in cases where the variable _is_ used, but, eg, in an `assert` statement that isn't present in production code.

 - If you approve of this diff, please use the "Accept & Ship" button :-)

Reviewed By: palmje

Differential Revision: D56253787
@facebook-github-bot
Copy link
Collaborator

This pull request was exported from Phabricator. Differential Revision: D56253787

Copy link
Contributor

@amitkdutta amitkdutta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@r-barnes Lets follow PrestoDB commit guidelines and remove any meta specific message (e.g. D56253787, Commit and Ship) button. Please create a PR in this repo, instead of exporting directly from Meta internal tools.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants