Issue 78998
Summary [clangd] Add CodeAction to swap operands to binary operators
Labels new issue
Assignees
Reporter torshepherd
    Title. Turn:

```cpp
if (p == nullptr) ...
if (x <= 5) ...
```

into

```cpp
if (nullptr == p) ...
if (5 >= x) ...
```
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to