Issue 104870
Summary `AlignAfterOpenBracket: BlockIndent` is not applied to lambdas
Labels new issue
Assignees
Reporter akbyrd
    Config
```
ColumnLimit: 30
AlignAfterOpenBracket: BlockIndent
BinPackParameters: false
```
Input
```
void f1_____(int token, float context) {
}

auto f2 = [](int token, float context) {
};
```
Actual Output
```
void f1_____(
    int token, float context
) {}

auto f2 = [](int token,
             float context) {
};
```
Expected Output
```
void f1_____(
    int token, float context
) {}

auto f2 = [](int token,
             float context
) {
};
```
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to