diff options
| author | cremno <[email protected]> | 2015-07-02 22:11:21 +0200 |
|---|---|---|
| committer | cremno <[email protected]> | 2015-07-02 22:11:21 +0200 |
| commit | 6a74b8bf0dd55441b87077f97e90ba29252edc53 (patch) | |
| tree | b5160dafb046dd18eeefe7f4a54133a4eaca9120 /mrbgems/mruby-compiler | |
| parent | ff49cf95fca2d1648f05dd636c8f8516c8edc815 (diff) | |
| download | mruby-6a74b8bf0dd55441b87077f97e90ba29252edc53.tar.gz mruby-6a74b8bf0dd55441b87077f97e90ba29252edc53.zip | |
add missing fall through comments
Diffstat (limited to 'mrbgems/mruby-compiler')
| -rw-r--r-- | mrbgems/mruby-compiler/core/parse.y | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mrbgems/mruby-compiler/core/parse.y b/mrbgems/mruby-compiler/core/parse.y index f6a43d32b..64f0a8821 100644 --- a/mrbgems/mruby-compiler/core/parse.y +++ b/mrbgems/mruby-compiler/core/parse.y @@ -4802,6 +4802,7 @@ parser_yylex(parser_state *p) case ')': case ']': p->paren_nest--; + /* fall through */ case '}': COND_LEXPOP(); CMDARG_LEXPOP(); @@ -5133,6 +5134,7 @@ parser_yylex(parser_state *p) pushback(p, c); return '$'; } + /* fall through */ case '0': tokadd(p, '$'); } |
