+2009-02-25 Akim Demaille <demaille@gostai.com>
+
+ Style changes.
+ * etc/bench.pl.in (generate_grammar_list): Consitently use
+ location_type, not yy::location.
+
2009-02-25 Akim Demaille <demaille@gostai.com>
Comment change.
if (stage == STAGE_MAX)
{
#if USE_LEX_SYMBOL
- return yy::parser::make_END_OF_FILE (yy::location());
+ return yy::parser::make_END_OF_FILE (location_type ());
#else
*yylloc = location_type ();
return token::END_OF_FILE;
else if (stage % 2)
{
#if USE_LEX_SYMBOL
- return yy::parser::make_NUMBER (stage, yy::location());
+ return yy::parser::make_NUMBER (stage, location_type ());
#else
# if defined ONE_STAGE_BUILD
yylval->build(stage);
else
{
#if USE_LEX_SYMBOL
- return yy::parser::make_TEXT ("A string.", yy::location());
+ return yy::parser::make_TEXT ("A string.", location_type ());
#else
# if defined ONE_STAGE_BUILD
yylval->build(std::string("A string."));
// Mandatory error function
void
-yy::parser::error(const yy::parser::location_type& yylloc,
- const std::string& message)
+yy::parser::error(const yy::parser::location_type& loc, const std::string& msg)
{
- std::cerr << yylloc << ": " << message << std::endl;
+ std::cerr << loc << ": " << msg << std::endl;
}
int main(int argc, char *argv[])