diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-08-25 13:55:57 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-08-25 13:55:57 -0400 |
commit | 2e95f1f002bc3f0504dffa6d9ffed0dc914ecec1 (patch) | |
tree | d28b03d260f30c8c9150ad72d96aba6cfaa731ce /src/interfaces/ecpg/preproc | |
parent | 0371d4d0632221957a60d4cdb70a898caf7ce6cf (diff) |
Add "%option warn" to all flex input files that lacked it.
This is recommended in the flex manual, and there seems no good reason
not to use it everywhere.
Diffstat (limited to 'src/interfaces/ecpg/preproc')
-rw-r--r-- | src/interfaces/ecpg/preproc/pgc.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/ecpg/preproc/pgc.l b/src/interfaces/ecpg/preproc/pgc.l index 019b70bbaf9..e4f55f81768 100644 --- a/src/interfaces/ecpg/preproc/pgc.l +++ b/src/interfaces/ecpg/preproc/pgc.l @@ -84,6 +84,7 @@ static struct _if_value %option nodefault %option noinput %option noyywrap +%option warn %option yylineno |