examples: bistromathic: simplify

* examples/c/bistromathic/parse.y (expected_tokens): Remove useless "break".
This commit is contained in:
Akim Demaille
2020-03-09 07:24:33 +01:00
parent 951da960e6
commit 0c3dd3a669

View File

@@ -339,8 +339,6 @@ expected_tokens (const char *input,
yypstate *ps = yypstate_new ();
int status = 0;
do {
if (!*input)
break;
YYSTYPE lval;
int token = yylex (&input, &lval, &lloc);
if (!token)