mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Style: clang-format: Disable AllowShortCaseLabelsOnASingleLine
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user