diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-11-25 13:50:45 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-12-16 11:33:23 +0100 |
commit | c0b89c40ca09852bd8d7f2d0da6f6f761dfa0867 (patch) | |
tree | b22ee2b0ba3aacf7c8326c46471153ac7f3bdc60 /lexxer.l | |
parent | 7ec91df9f79e3aa1ded51e5b859dbfa67049ad7b (diff) | |
download | mig-c0b89c40ca09852bd8d7f2d0da6f6f761dfa0867.tar.gz mig-c0b89c40ca09852bd8d7f2d0da6f6f761dfa0867.tar.bz2 mig-c0b89c40ca09852bd8d7f2d0da6f6f761dfa0867.zip |
Advise flex not to generate the input function
This avoids a warning about input being unused.
* lexxer.l: Define YY_NO_INPUT.
Diffstat (limited to 'lexxer.l')
-rw-r--r-- | lexxer.l | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -50,6 +50,9 @@ FileName ({QString}|{AString}) #include "lexxer.h" #include "cpu.h" +/* We do not need the input function. */ +#define YY_NO_INPUT + #define stringize(x) #x #ifdef LDEBUG |