diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-03-30 01:33:16 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-03-30 01:33:16 +0200 |
commit | 4d696a973af61e716959801c88b3ddbeca582e89 (patch) | |
tree | e95d62464568a91adba291d2e733578a64e49020 | |
parent | 8a6a48807d6c295250eef39620e156df305a9635 (diff) | |
download | fastd-4d696a973af61e716959801c88b3ddbeca582e89.tar fastd-4d696a973af61e716959801c88b3ddbeca582e89.zip |
Add Flex options to fix -Wall warnings
-rw-r--r-- | src/config.l | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.l b/src/config.l index 6ed07bb..447daed 100644 --- a/src/config.l +++ b/src/config.l @@ -26,9 +26,13 @@ %option prefix="fastd_config_yy" %option noyywrap +%option nounput +%option noinput %option bison-bridge %option bison-locations %option reentrant +%option warn + %top { #include <config.yy.h> |