Fix indentation, make llvm happy

clang says "label at end of switch statement is a C2x extension."
This commit is contained in:
Jōshin 2023-12-18 17:38:12 -05:00
parent 58b620d8f7
commit 357fcb9c64
No known key found for this signature in database

View file

@ -58,7 +58,7 @@ static inline int AllNumDot(const char *s) {
case 0: return 1; case 0: return 1;
case '0': case '1': case '2': case '3': case '4': case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9': case '.': case '5': case '6': case '7': case '8': case '9': case '.':
/* continue */ ; /* continue */
} }
} }
} }