From 2e95f1f002bc3f0504dffa6d9ffed0dc914ecec1 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 25 Aug 2011 13:55:57 -0400 Subject: 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. --- contrib/seg/segscan.l | 1 + 1 file changed, 1 insertion(+) (limited to 'contrib/seg') diff --git a/contrib/seg/segscan.l b/contrib/seg/segscan.l index c2b5ca87896..e4feab39b37 100644 --- a/contrib/seg/segscan.l +++ b/contrib/seg/segscan.l @@ -30,6 +30,7 @@ void seg_scanner_finish(void); %option noinput %option nounput %option noyywrap +%option warn %option prefix="seg_yy" -- cgit v1.2.3