Issue 138942
Summary unexpected formatting on empty lines
Labels c++, clang-format
Assignees
Reporter kadircet
    command `clang-format --lines=2:2 a.cc`

actual formatting:
```cpp
void f() {
 
}
```

expected formatting:
```cpp
void f() {}
```

this seems to be WAI if there are tokens on line 2, e.g:
```cpp
void f() {
 return;
}
```

gets formatted as `void f() { return; }`.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to