mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-04-15 05:32:21 +00:00
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:
@@ -28,6 +28,7 @@
|
||||
%}
|
||||
%option noyywrap
|
||||
%option nounput
|
||||
%option noinput
|
||||
%%
|
||||
|
||||
"=" DataFilterlval.op = EQ; return EQ;
|
||||
|
||||
@@ -38,6 +38,7 @@
|
||||
%}
|
||||
%option noyywrap
|
||||
%option nounput
|
||||
%option noinput
|
||||
%%
|
||||
\"RIDE\" return RIDE;
|
||||
\"STARTTIME\" return STARTTIME;
|
||||
|
||||
@@ -39,6 +39,7 @@
|
||||
%}
|
||||
%option noyywrap
|
||||
%option nounput
|
||||
%option noinput
|
||||
%%
|
||||
\"status\" return STATUS;
|
||||
\"body\" return BODY;
|
||||
|
||||
Reference in New Issue
Block a user