diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 93c9338639b1..bb646060b49e 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2005-08-19 Volker Reichelt + + * parser.c (cp_parser_nth_token_starts_template_argument_list_p): + Fix typo in leading comment. + 2005-08-15 Kaveh R. Ghazi * name-lookup.c, ptree.c: Delete HOST_PTR_PRINTF. diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index fa46b256de72..6eaf530b410f 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -15965,7 +15965,7 @@ cp_parser_next_token_ends_template_argument_p (cp_parser *parser) return (token->type == CPP_COMMA || token->type == CPP_GREATER); } -/* Returns TRUE iff the n-th token is a ">", or the n-th is a "[" and the +/* Returns TRUE iff the n-th token is a "<", or the n-th is a "[" and the (n+1)-th is a ":" (which is a possible digraph typo for "< ::"). */ static bool