* src/ltlparse/Makefile.am (CXXFLAGS): Turn on GCC warnings

now that CVS Bison is fixed.
* src/ltlparse/ltlscan.ll: Use yyunput to shut up a GCC warning.
This commit is contained in:
Alexandre Duret-Lutz 2003-04-28 15:58:41 +00:00
parent 7cb2aa5b84
commit cc519254c5
3 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2003-04-28 Alexandre DURET-LUTZ <aduret@src.lip6.fr>
* src/ltlparse/Makefile.am (CXXFLAGS): Turn on GCC warnings
now that CVS Bison is fixed.
* src/ltlparse/ltlscan.ll: Use yyunput to shut up a GCC warning.
2003-04-24 Rachid REBIHA <rebiha@nyx>
* src/ltltest/tostring.test: New file.

View file

@ -1,4 +1,5 @@
AM_CPPFLAGS = -I$(srcdir)/..
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
lib_LIBRARIES = libltlparse.a

View file

@ -70,3 +70,8 @@ flex_set_buffer(const char *buf)
. return *yytext;
<<EOF>> return END_OF_INPUT;
%{
/* Dummy use of yyunput to shut up a gcc warning. */
(void) &yyunput;
%}