diff options
author | Tom Lane | 2008-08-25 23:12:45 +0000 |
---|---|---|
committer | Tom Lane | 2008-08-25 23:12:45 +0000 |
commit | 088dbffde924c33d4a5607f7a24d1ae794cfe961 (patch) | |
tree | e7fbee5d6a6510e5029d4cc860ca62bbae7d47d3 | |
parent | 845680eabe79f8b43a3e1221d759b01a2c776a86 (diff) |
Add %option noinput to contrib's flex scanners, to suppress gcc 4.3
warnings. Peter did this for core awhile ago but evidently missed
contrib.
-rw-r--r-- | contrib/cube/cubescan.l | 1 | ||||
-rw-r--r-- | contrib/seg/segscan.l | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/contrib/cube/cubescan.l b/contrib/cube/cubescan.l index 2453aba848..b73553e548 100644 --- a/contrib/cube/cubescan.l +++ b/contrib/cube/cubescan.l @@ -29,6 +29,7 @@ void cube_scanner_finish(void); %option 8bit %option never-interactive %option nodefault +%option noinput %option nounput %option noyywrap %option prefix="cube_yy" diff --git a/contrib/seg/segscan.l b/contrib/seg/segscan.l index 817300993d..36da5fa395 100644 --- a/contrib/seg/segscan.l +++ b/contrib/seg/segscan.l @@ -27,6 +27,7 @@ void seg_scanner_finish(void); %option 8bit %option never-interactive %option nodefault +%option noinput %option nounput %option noyywrap %option prefix="seg_yy" |