disable generation of unput() and input() in lexer to avoid code check fail
This commit is contained in:
parent
98c69026ba
commit
b0ecb5d459
|
@ -6,6 +6,11 @@
|
||||||
int yylex();
|
int yylex();
|
||||||
%}
|
%}
|
||||||
|
|
||||||
|
// disable the following functions
|
||||||
|
// to avoid failing code check
|
||||||
|
%option nounput
|
||||||
|
%option noinput
|
||||||
|
|
||||||
%%
|
%%
|
||||||
.;
|
.;
|
||||||
%%
|
%%
|
||||||
|
|
Loading…
Reference in New Issue