diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-28 11:55:45 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-28 11:55:45 +0000 |
commit | f9f1c24eb8f0d9bf4607562576a2095909c3fa06 (patch) | |
tree | 08247f01293273d0d525d1baeee863a0142aed68 /gcc | |
parent | 6dbd43baddbc369411d7c3977eff71e5ab3d6429 (diff) | |
download | gcc-f9f1c24eb8f0d9bf4607562576a2095909c3fa06.zip gcc-f9f1c24eb8f0d9bf4607562576a2095909c3fa06.tar.gz gcc-f9f1c24eb8f0d9bf4607562576a2095909c3fa06.tar.bz2 |
* tree.c: Fix a comment typo.
From-SVN: r88229
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/tree.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 05e6fc2..b7b0d3f 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2004-09-28 Kazu Hirata <kazu@cs.umass.edu> + + * tree.c: Fix a comment typo. + 2004-09-28 Nathan Sidwell <nathan@codesourcery.com> * class.c (VTT_TOP_LEVEL_P, VTT_MARKED_BINFO_P): Remove. diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c index 16bb39b..a8cea23 100644 --- a/gcc/cp/tree.c +++ b/gcc/cp/tree.c @@ -2340,7 +2340,7 @@ fold_if_not_in_template (tree expr) /* In the body of a template, there is never any need to call "fold". We will call fold later when actually instantiating the template. Integral constant expressions in templates will be - evaluted via fold_non_dependent_expr, as necessary. */ + evaluated via fold_non_dependent_expr, as necessary. */ return (processing_template_decl ? expr : fold (expr)); } |