Code Cleanup: Fix yyinput warnings

.. we can tell flex to not generate the yyinput code in the
first place, to remove compiler warnings about emitting yyinput()
This commit is contained in:
Mark Liversedge
2013-02-18 16:24:59 +00:00
parent 9c98ac84d3
commit 0431edac81
3 changed files with 3 additions and 0 deletions

View File

@@ -28,6 +28,7 @@
%}
%option noyywrap
%option nounput
%option noinput
%%
"=" DataFilterlval.op = EQ; return EQ;

View File

@@ -38,6 +38,7 @@
%}
%option noyywrap
%option nounput
%option noinput
%%
\"RIDE\" return RIDE;
\"STARTTIME\" return STARTTIME;

View File

@@ -39,6 +39,7 @@
%}
%option noyywrap
%option nounput
%option noinput
%%
\"status\" return STATUS;
\"body\" return BODY;