Fixes https://github.com/llvm/llvm-project/issues/50051.
Given the style:
BraceWrapping AfterFunction: true SplitEmptyFunction: true SplitEmptyRecord: false ...
The code that should be like:
void f(int aaaaaaaaaaaaaaaaaaaaaaaaaaaa,
int bbbbbbbbbbbbbbbbbbbbbbbb)
{
}gets the braces merged together:
void f(int aaaaaaaaaaaaaaaaaaaaaaaaaaaa,
int bbbbbbbbbbbbbbbbbbbbbbbb)
{}
clang-format: please reformat the code
- verifyFormat("\"一 二 三 四 五 六 七 八 九 十\"", getLLVMStyleWithColumns(31)); + verifyFormat("\"一 二 三 四 五 六 七 八 九 十\"", + getLLVMStyleWithColumns(31));