mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-18 16:53:02 +00:00
(yy::]b4_parser_class_name[::parse): yylineno -> yylno.
This commit is contained in:
@@ -432,9 +432,9 @@ yy::]b4_parser_class_name[::parse ()
|
|||||||
// Short files will use "unsigned char" for line numbers,
|
// Short files will use "unsigned char" for line numbers,
|
||||||
// in which case they will be output as character litterals
|
// in which case they will be output as character litterals
|
||||||
// by "<<".
|
// by "<<".
|
||||||
unsigned yylineno = rline_[n_];
|
unsigned yylno = rline_[n_];
|
||||||
YYCDEBUG << "Reducing via rule " << n_ - 1
|
YYCDEBUG << "Reducing via rule " << n_ - 1
|
||||||
<< " (line " << yylineno << "), ";
|
<< " (line " << yylno << "), ";
|
||||||
for (]b4_int_type_for([b4_prhs])[ i = prhs_[n_];
|
for (]b4_int_type_for([b4_prhs])[ i = prhs_[n_];
|
||||||
0 <= rhs_[i]; ++i)
|
0 <= rhs_[i]; ++i)
|
||||||
YYCDEBUG << name_[rhs_[i]] << ' ';
|
YYCDEBUG << name_[rhs_[i]] << ' ';
|
||||||
|
|||||||
Reference in New Issue
Block a user