Style: clang-format: Disable AllowShortCaseLabelsOnASingleLine

This commit is contained in:
Rémi Verschelde
2021-05-04 14:35:44 +02:00
parent 3d15f04668
commit 64a63e0861
91 changed files with 3804 additions and 1467 deletions

View File

@@ -4285,9 +4285,14 @@ String String::sprintf(const Array &values, bool *error) const {
int base = 16;
bool capitalize = false;
switch (c) {
case 'd': base = 10; break;
case 'o': base = 8; break;
case 'x': break;
case 'd':
base = 10;
break;
case 'o':
base = 8;
break;
case 'x':
break;
case 'X':
base = 16;
capitalize = true;