From bee10f5774927e919d29705f4e4825f02770ffdd Mon Sep 17 00:00:00 2001 From: Jannick Date: Tue, 20 Nov 2018 22:02:20 +0100 Subject: [PATCH] doc: calc++: remove ancient fix for flex * doc/bison.texi (Calc++ Scanner): Remove fix for Flex 2.5.31-2.5.33. --- doc/bison.texi | 6 ------ 1 file changed, 6 deletions(-) diff --git a/doc/bison.texi b/doc/bison.texi index c3099cfc..72f28fc2 100644 --- a/doc/bison.texi +++ b/doc/bison.texi @@ -11821,12 +11821,6 @@ then the parser's to get the set of defined tokens. @comment file: calc++/scanner.ll @example %@{ -// Work around an incompatibility in flex (at least versions 2.5.31 through -// 2.5.33): it generates code that does not conform to C89. See Debian bug -// 333231 . -# undef yywrap -# define yywrap() 1 - // Pacify warnings in yy_init_buffer (observed with Flex 2.6.4) // and GCC 6.4.0, 7.3.0. #if defined __GNUC__ && !defined __clang__ && 6 <= __GNUC__