diff options
| author | Peter Eisentraut | 2008-05-09 15:36:31 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2008-05-09 15:36:31 +0000 |
| commit | d35c56ed9f26631d050463cd61a7bdd51b358fa6 (patch) | |
| tree | 49468a132e820a3f5e50cbce4ded06683a305083 /src/interfaces | |
| parent | 6e3e60095dd4ad882d57468a25f4d76403100b33 (diff) | |
Add "%option noinput" to the scanners to avoid compiler warnings. GCC 4.3
began to realize that the input() function isn't used and printed warnings.
Diffstat (limited to 'src/interfaces')
| -rw-r--r-- | src/interfaces/ecpg/preproc/pgc.l | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/pgc.l b/src/interfaces/ecpg/preproc/pgc.l index bcfc1619499..18cdccc7e15 100644 --- a/src/interfaces/ecpg/preproc/pgc.l +++ b/src/interfaces/ecpg/preproc/pgc.l @@ -12,7 +12,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.163 2008/02/17 18:14:29 meskes Exp $ + * $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.164 2008/05/09 15:36:31 petere Exp $ * *------------------------------------------------------------------------- */ @@ -76,6 +76,7 @@ static struct _if_value %option 8bit %option never-interactive %option nodefault +%option noinput %option noyywrap %option yylineno |
