We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
command clang-format --lines=2:2 a.cc
clang-format --lines=2:2 a.cc
actual formatting:
void f() { }
expected formatting:
void f() {}
this seems to be WAI if there are tokens on line 2, e.g:
void f() { return; }
gets formatted as void f() { return; }.