;
%%
AT_LALR1_CC_IF(
-[/* Currently, print_ is required in C++. */
+[/* A C++ error reporting function. */
void
-yy::Parser::print_ ()
+yy::parser::error (const location&, const std::string& m)
{
-}
-
-/* A C++ error reporting function. */
-void
-yy::Parser::error_ ()
-{
- std::cerr << message << std::endl;
+ std::cerr << m << std::endl;
}
int
-yyparse (void)
+yyparse ()
{
- yy::Parser parser (!!YYDEBUG);
+ yy::parser parser;
+ parser.set_debug_level (!!YYDEBUG);
return parser.parse ();
}
],