Issue |
68102
|
Summary |
[clang-format] Missing indention of an aligned template function call
|
Labels |
bug,
clang-format
|
Assignees |
HazardyKnusperkeks
|
Reporter |
HazardyKnusperkeks
|
With `AlignConsecutiveAssignment: true` and `ColumnLimit: 60` the Code
```c++
SomeName = Foo;
X = func<Type, Type>(loong,
arrrrrrrrrrg);
```
gets formatted as
```c++
SomeName = Foo;
X = func<Type, Type>(loong,
arrrrrrrrrrg);
```
which is obviously missing the indent of the `=`. It has to be a template function.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs