AllowShortBlocksOnASingleLine
AllowShortBlocksOnASingleLine (ShortBlockStyle
)¶
Info
clang-format 11
依赖于值,while (true) {continue;
可以放在一行上。
可能的值:
SBS_Never
: 永远不要将块合并为一行。
while (true) {
}
while (true) {
continue;
}
SBS_Empty
: 只合并空块。
while (true) {}
while (true) {
continue;
}
SBS_Always
: 总是将短块合并为一行。
while (true) {}
while (true) { continue; }
最后更新:
2022-10-31