You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there supposed to be a fallthrough on this line?
*endptr = s++;
switch (**endptr) {
case '-':
if (!isdigit(*s) && *s != '.') {
*endptr = s;
return JSON_BAD_NUMBER;
}
// Should I fallthrough here?
case '0':
case '1':
case '2':
case '3':
Is there supposed to be a fallthrough on this line?