IndentGotoLabels
IndentGotoLabels (Boolean)¶
Info
clang-format 10
缩进 goto 标签。
当为 false 时,goto 标签被推到最左侧。
int f() {
if (foo()) {
label1:
bar();
}
label2:
return 1;
}
int f() {
if (foo()) {
label1:
bar();
}
label2:
return 1;
}
最后更新:
2022-10-31