Issue 124073
Summary [clang-format] Misformatted reference with PointerAlignment Left on main versus 19
Labels clang-format
Assignees
Reporter rmarker
    While testing with the main branch, I discovered this formatting change from 19.1.0.

Using 19.1.0 and `-style="{PointerAlignment: Left}"` I get the following:
```cpp
[](decltype(foo)& Bar) {};
```

Using main (20.0.0git 19834b4623fd1e7ae5185ed76031b407c3fa7a47) and the same style `-style="{PointerAlignment: Left}"`:
```cpp
[](decltype(foo) & Bar) {};
```
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to