Issue 104871
Summary `AlignAfterOpenBracket: BlockIndent` does not respect `ColumnLimit: 0`
Labels new issue
Assignees
Reporter akbyrd
    Config
```
ColumnLimit: 0
AlignAfterOpenBracket: BlockIndent
```
Input
```
void f1_____(int token, float context) {
}

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

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

auto f2 = [](int token, float context) {
};
```
`ColumnLimit: 0` means no column limit, so both the function and the lambda parameters are able to fit on a single line.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to