diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-04-15 18:58:57 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-04-15 18:58:57 +0000 |
commit | 8945cfb0be974d1b291a78ce78c2835d092a4c41 (patch) | |
tree | 3a346b34100149b27224ddc0b90439d5bca1d0da | |
parent | 9d463c3dbf8072294f21bdd6f475900061f8b569 (diff) | |
download | gcc-8945cfb0be974d1b291a78ce78c2835d092a4c41.tar.gz |
* cp-tree.h (current_template_parms): Fix typo in comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123851 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index a0b9bd2a8f0..fc9bfe00d4a 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2007-04-15 Mark Mitchell <mark@codesourcery.com> + + * cp-tree.h (current_template_parms): Fix typo in comment. + 2007-04-15 Kazu Hirata <kazu@codesourcery.com> * cp-tree.h, error.c: Fix comment typos. diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index 40911b58621..07e4e3f1ec2 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -787,7 +787,7 @@ struct saved_scope GTY(()) #define current_lang_base scope_chain->lang_base #define current_lang_name scope_chain->lang_name -/* When parsing a template declaration, a TREE_LIST representing the +/* When parsing a template declaration, a TREE_LIST represents the active template parameters. Each node in the list represents one level of template parameters. The innermost level is first in the list. The depth of each level is stored as an INTEGER_CST in the |