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

Various fixes for manual_is_power_of_two #14463

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

samueltardieu
Copy link
Contributor

Fix #14461:

  • insert parentheses as required in suggestion
  • check MSRV before suggesting fix in const context
  • do not lint macro expansion result

Commits have been logically separated to facilitate review, and start with a refactoring (and simplification) of the existing code.

changelog: [manual_is_power_of_two]: insert parentheses as required in suggestion, check MSRV before suggesting fix in const context, do not lint macro expansion results

@rustbot
Copy link
Collaborator

rustbot commented Mar 24, 2025

r? @blyxyas

rustbot has assigned @blyxyas.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties label Mar 24, 2025
This is a refactoring of the existing code to remove
repetitive code.
Since the fixed expression is used as a receiver for
`.is_power_of_two()`, it may require parentheses.
If parts of the expression comes from macro expansion, it may match an
expression equivalent to `is_power_of_two()` by chance only.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-review Status: Awaiting review from the assignee but also interested parties
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Several problems with clippy::manual_is_power_of_two
3 participants