跳转至

AllowShortCaseLabelsOnASingleLine

AllowShortCaseLabelsOnASingleLine (Boolean)

Info

clang-format 3.6

如果为 true,短 case 标签将收缩为一行。

switch (a) {
case 1: x = 1; break;
case 2: return;
}
switch (a) {
case 1:
  x = 1;
  break;
case 2:
  return;
}

最后更新: 2022-10-31