parse.y (namespace_qualifier, [...]): Add ending ';', in accordance with POSIX.

2002-04-08  Paolo Carlini  <pcarlini@unitus.it>

	* parse.y (namespace_qualifier, maybe_identifier,
	begin_explicit_instantiation, end_explicit_instantiation,
	apparent_template_type, .finish_template_type,
	do_id, maybe_init, defarg_again, component_decl_1):
	Add ending ';', in accordance with POSIX.

From-SVN: r52039
This commit is contained in:
Paolo Carlini 2002-04-08 22:17:47 +02:00 committed by Paolo Carlini
parent b5515bce78
commit b653b3bb75
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,11 @@
2002-04-08 Paolo Carlini <pcarlini@unitus.it>
* parse.y (namespace_qualifier, maybe_identifier,
begin_explicit_instantiation, end_explicit_instantiation,
apparent_template_type, .finish_template_type,
do_id, maybe_init, defarg_again, component_decl_1):
Add ending ';', in accordance with POSIX.
2002-04-06 Mark Mitchell <mark@codesourcery.com>
PR c++/5571

View File

@ -596,6 +596,7 @@ namespace_qualifier:
$$ = lastiddecl;
got_scope = $$;
}
;
any_id:
unqualified_id
@ -645,6 +646,7 @@ maybe_identifier:
{ $$ = $1; }
| /* empty */
{ $$ = NULL_TREE; }
;
template_type_parm:
aggr maybe_identifier
@ -1042,9 +1044,11 @@ explicit_instantiation:
begin_explicit_instantiation:
{ begin_explicit_instantiation(); }
;
end_explicit_instantiation:
{ end_explicit_instantiation(); }
;
/* The TYPENAME expansions are to deal with use of a template class name as
a template within the class itself, where the template decl is hidden by
@ -1065,6 +1069,7 @@ apparent_template_type:
| identifier '<' template_arg_list_opt '>'
.finish_template_type
{ $$ = $5; }
;
self_template_type:
SELFNAME '<' template_arg_list_opt template_close_bracket
@ -1080,6 +1085,7 @@ self_template_type:
$$ = finish_template_type ($<ttype>-3, $<ttype>-1,
yychar == SCOPE);
}
;
template_close_bracket:
'>'
@ -1499,6 +1505,7 @@ do_id:
else
$$ = $<ttype>-1;
}
;
template_id:
PFUNCNAME '<' do_id template_arg_list_opt template_close_bracket
@ -2185,6 +2192,7 @@ maybe_init:
{ $$ = NULL_TREE; }
| '=' init
{ $$ = $2; }
;
/* If we are processing a template, we don't want to expand this
initializer yet. */
@ -2249,6 +2257,7 @@ defarg_again:
{ replace_defarg ($1, $2); }
| DEFARG_MARKER error END_OF_SAVED_INPUT
{ replace_defarg ($1, error_mark_node); }
;
pending_defargs:
/* empty */ %prec EMPTY
@ -2680,6 +2689,7 @@ component_decl_1:
{ $$ = grokfield ($$, NULL_TREE, $4, $2, $3); }
| using_decl
{ $$ = do_class_using_decl ($1); }
;
/* The case of exactly one component is handled directly by component_decl. */
/* ??? Huh? ^^^ */