Fix indentation, make llvm happy (#1032)

clang says "label at end of switch statement is a C2x extension."
This commit is contained in:
Jōshin 2023-12-18 20:48:33 -05:00 committed by GitHub
parent 58b620d8f7
commit 1280797db2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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