diff options
author | Father Chrysostomos <sprout@cpan.org> | 2016-08-02 17:57:52 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2016-08-03 00:40:44 -0700 |
commit | 734652892ae108d2cae2d8d50c047bffcf9b8237 (patch) | |
tree | 458f32b31e897facb9dfdeab26dc320c10e4b686 /parser.h | |
parent | c7202deeaccd41c87be26607b12888eb48962016 (diff) | |
download | perl-734652892ae108d2cae2d8d50c047bffcf9b8237.tar.gz |
parser.h: Make nexttoke a U8
As mentioned in the commit message for a2867f88735d4, this can
only contain numbers from 0 to 5.
Diffstat (limited to 'parser.h')
-rw-r--r-- | parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -100,7 +100,7 @@ typedef struct yy_parser { YYSTYPE nextval[5]; /* value of next token, if any */ I32 nexttype[5]; /* type of next token */ - U32 nexttoke; + U8 nexttoke; COP *saved_curcop; /* the previous PL_curcop */ char tokenbuf[256]; |