Issue 87386
Summary [ClangFormat] AllowShortLambdasOnASingleLine not honored
Labels new issue
Assignees
Reporter epitavy
    clang-format with `AllowShortLambdasOnASingleLine : Inline` changes this code
```cpp
func(a, []() {});
func(a, []() {}, b);
```
to this code
```cpp
func(a, []() {});
func(
      a, []() {}, b);
```
where I expect no changes.

I think this is a bug, but maybe there is a workaround ?

_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to