diff options
author | Volker Reichelt <reichelt@igpm.rwth-aachen.de> | 2005-08-19 19:08:08 +0000 |
---|---|---|
committer | Volker Reichelt <reichelt@gcc.gnu.org> | 2005-08-19 19:08:08 +0000 |
commit | 48b5c5c173a1b5623eb467213b62715e6e36b0e5 (patch) | |
tree | 10f11cdf6fb24be17bda4b8bad7e763cdccd4b48 | |
parent | e3594cb39e95c81f8b7c53a704fc53e744b592ab (diff) | |
download | gcc-48b5c5c173a1b5623eb467213b62715e6e36b0e5.zip gcc-48b5c5c173a1b5623eb467213b62715e6e36b0e5.tar.gz gcc-48b5c5c173a1b5623eb467213b62715e6e36b0e5.tar.bz2 |
parser.c (cp_parser_nth_token_starts_template_argument_list_p): Fix typo in leading comment.
* parser.c (cp_parser_nth_token_starts_template_argument_list_p):
Fix typo in leading comment.
From-SVN: r103292
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/parser.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 93c9338..bb64606 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2005-08-19 Volker Reichelt <reichelt@igpm.rwth-aachen.de> + + * parser.c (cp_parser_nth_token_starts_template_argument_list_p): + Fix typo in leading comment. + 2005-08-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * name-lookup.c, ptree.c: Delete HOST_PTR_PRINTF. diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index fa46b25..6eaf530 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 |