Go to the previous, next section.
reject_used_but_not_detected undefined
yymore_used_but_not_detected undefined
REJECT
or yymore
but that flex
failed to
notice the fact, meaning that flex
scanned the first two sections
looking for occurrences of these actions and failed to find any, but
somehow you snuck some in (via a #include
file, for example).
Make an explicit reference to the action in your flex
input file.
(Note that previously flex
supported a
%used
/%unused
mechanism for dealing with this problem;
this feature is still supported but now deprecated, and will go away
soon unless the author hears from people who can argue compellingly that
they need it.)
flex scanner jammed
flex input buffer overflowed
YY_BUF_SIZE
in `flex.skel'. Note that to redefine this
macro, you must first #undefine
it).
scanner requires -8 flag
flex
with `-8' as the default).
fatal flex scanner internal error--end of buffer missed
yyrestart( yyin );
too many %t classes!
%t
class.
flex
requires that at least one of the classes share characters.
Go to the previous, next section.