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
) {};
Notice the parameters to f1 are not on separate lines as they should be based on BinPackParameters: false. For comparison, parameters are on separate lines as expected with AlignAfterOpenBracket: BlockIndent. The only difference between those two should be the placement of the closing paren.
Version: 18.1.1
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
) {};
```
Notice the parameters to `f1` are not on separate lines as they should be based on `BinPackParameters: false`. For comparison, parameters are on separate lines as expected with `AlignAfterOpenBracket: BlockIndent`. The only difference between those two should be the placement of the closing paren.
Version: 18.1.8
Config
Input
Actual Output
Expected Output
Notice the parameters to
f1
are not on separate lines as they should be based onBinPackParameters: false
. For comparison, parameters are on separate lines as expected withAlignAfterOpenBracket: BlockIndent
. The only difference between those two should be the placement of the closing paren.