mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-26 21:33:59 +08:00
* parse.y (constructor_declarator): Fix for bison pedantry.
From-SVN: r159936
This commit is contained in:
parent
e5030acb58
commit
17c842c4a7
@ -1,3 +1,7 @@
|
||||
2010-05-27 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* parse.y (constructor_declarator): Fix for bison pedantry.
|
||||
|
||||
2005-05-03 Release Manager
|
||||
|
||||
* GCC 3.3.6 Released.
|
||||
|
@ -821,7 +821,7 @@ fndef:
|
||||
|
||||
constructor_declarator:
|
||||
nested_name_specifier SELFNAME '('
|
||||
{ $$ = begin_constructor_declarator ($1, $2); }
|
||||
{ $<ttype>$ = begin_constructor_declarator ($1, $2); }
|
||||
parmlist ')' cv_qualifiers exception_specification_opt
|
||||
{ $$ = make_call_declarator ($<ttype>4, $5, $7, $8); }
|
||||
| nested_name_specifier SELFNAME LEFT_RIGHT cv_qualifiers exception_specification_opt
|
||||
@ -829,7 +829,7 @@ constructor_declarator:
|
||||
$$ = make_call_declarator ($$, empty_parms (), $4, $5);
|
||||
}
|
||||
| global_scope nested_name_specifier SELFNAME '('
|
||||
{ $$ = begin_constructor_declarator ($2, $3); }
|
||||
{ $<ttype>$ = begin_constructor_declarator ($2, $3); }
|
||||
parmlist ')' cv_qualifiers exception_specification_opt
|
||||
{ $$ = make_call_declarator ($<ttype>5, $6, $8, $9); }
|
||||
| global_scope nested_name_specifier SELFNAME LEFT_RIGHT cv_qualifiers exception_specification_opt
|
||||
@ -837,7 +837,7 @@ constructor_declarator:
|
||||
$$ = make_call_declarator ($$, empty_parms (), $5, $6);
|
||||
}
|
||||
| nested_name_specifier self_template_type '('
|
||||
{ $$ = begin_constructor_declarator ($1, $2); }
|
||||
{ $<ttype>$ = begin_constructor_declarator ($1, $2); }
|
||||
parmlist ')' cv_qualifiers exception_specification_opt
|
||||
{ $$ = make_call_declarator ($<ttype>4, $5, $7, $8); }
|
||||
| nested_name_specifier self_template_type LEFT_RIGHT cv_qualifiers exception_specification_opt
|
||||
@ -845,7 +845,7 @@ constructor_declarator:
|
||||
$$ = make_call_declarator ($$, empty_parms (), $4, $5);
|
||||
}
|
||||
| global_scope nested_name_specifier self_template_type '('
|
||||
{ $$ = begin_constructor_declarator ($2, $3); }
|
||||
{ $<ttype>$ = begin_constructor_declarator ($2, $3); }
|
||||
parmlist ')' cv_qualifiers exception_specification_opt
|
||||
{ $$ = make_call_declarator ($<ttype>5, $6, $8, $9); }
|
||||
| global_scope nested_name_specifier self_template_type LEFT_RIGHT cv_qualifiers exception_specification_opt
|
||||
|
Loading…
Reference in New Issue
Block a user