Index: ChangeLog
from Benoît Perrot <benoit(a)lrde.epita.fr>
* src/parse/libparse.cc: Use the up-to-date bison parser
constructor. make check failed on platforms that have bison1.875e,
which generates an error message when the deprecated parser
constructor is invoked.
2004-10-31 Benoît Perrot <benoit(a)lrde.epita.fr>
Index: src/parse/libparse.cc
--- src/parse/libparse.cc (revision 145)
+++ src/parse/libparse.cc (revision 146)
@@ -39,7 +39,7 @@
::inst::Program*
parse (const std::string &fname)
{
- yy::Parser parser = yy::Parser (trace_parse_p, yy::Location ());
+ yy::Parser parser = yy::Parser (trace_parse_p);
yy::program_builder.reset(nop_after_branch_p);