From 0a20c5dd913ee49a4faf9ed5d868e308949eb450 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sun, 10 Feb 2013 20:21:05 +0000 Subject: Add %option noinput to some Flex files, as we aren't using the input() routine and thus don't need to have it generated - and as it produces warnings of a routine defined but not used, we don't want to have it generated. svn path=/trunk/; revision=47616 --- text2pcap-scanner.l | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'text2pcap-scanner.l') diff --git a/text2pcap-scanner.l b/text2pcap-scanner.l index ca9926d135..59bc017217 100644 --- a/text2pcap-scanner.l +++ b/text2pcap-scanner.l @@ -1,5 +1,10 @@ /* -*-mode: flex-*- */ +/* + * We don't use input, so don't generate code for it. + */ +%option noinput + /* * We don't use unput, so don't generate code for it. */ -- cgit v1.2.3