We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Title. Turn:
if (p == nullptr) ... if (x <= 5) ...
into
if (nullptr == p) ... if (5 >= x) ...
The text was updated successfully, but these errors were encountered:
@llvm/issue-subscribers-clangd
Author: Tor Shepherd (torshepherd)
if (p == nullptr) ... if (x <= 5) ...
if (nullptr == p) ... if (5 >= x) ...
Sorry, something went wrong.
[clangd] Add CodeAction to swap operands to binary operators (#78999)
81fcdc6
This MR resolves #78998
[clangd] Add CodeAction to swap operands to binary operators (llvm#78999
808ae24
) This MR resolves llvm#78998
Successfully merging a pull request may close this issue.
Title. Turn:
into
The text was updated successfully, but these errors were encountered: