liboconfig: really fix lex warnings
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 25 Jul 2015 19:29:50 +0000 (21:29 +0200)
committerMarc Fournier <marc.fournier@camptocamp.com>
Sat, 1 Aug 2015 07:10:41 +0000 (09:10 +0200)
Flex has two options to disable input and unput.
Turn them on.

src/liboconfig/scanner.l

index 6294ae5..e38cf30 100644 (file)
  */
 
 %{
-/* lex and yacc do some weird stuff, so turn off some warnings. */
-#if defined(__clang__)
-# pragma clang diagnostic ignored "-Wunused-function"
-# pragma clang diagnostic ignored "-Wunneeded-internal-declaration"
-#endif
-
 #include <stdlib.h>
 #include "oconfig.h"
 #include "aux_types.h"
@@ -47,6 +41,8 @@ static void ml_append (char *);
 %}
 %option yylineno
 %option noyywrap
+%option noinput
+%option nounput
 %x ML
 WHITE_SPACE [\ \t\b]
 NON_WHITE_SPACE [^\ \t\b]