diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-12-28 06:48:38 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-12-28 06:48:38 +0000 |
commit | 44cbf6e4542d6c8910b430343c541ed9dad76284 (patch) | |
tree | 5f0ea2e05092a0ceab2587c7ba6ca9f5d207cd9c | |
parent | ca01388dfcbdb7712a09bf69f4f465c3dd652c69 (diff) | |
download | gcc-44cbf6e4542d6c8910b430343c541ed9dad76284.zip gcc-44cbf6e4542d6c8910b430343c541ed9dad76284.tar.gz gcc-44cbf6e4542d6c8910b430343c541ed9dad76284.tar.bz2 |
* decl2.c: Fix a comment typo.
From-SVN: r120240
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/decl2.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 9f00936..4c7afc5 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,8 +1,10 @@ -2006-12-27 Kazu Hirata <kazu@codesourcery.com> +2006-12-28 Kazu Hirata <kazu@codesourcery.com> * cp/cp-tree.h (TYPE_NAMESPACE_SCOPE_P, TYPE_FUNCTION_SCOPE_P): Remove. + * decl2.c: Fix a comment typo. + 2006-12-21 Andrew Pinski <pinskia@gmail.com> PR C++/30225 diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c index 0c0695e..e3e8d08 100644 --- a/gcc/cp/decl2.c +++ b/gcc/cp/decl2.c @@ -2824,7 +2824,7 @@ write_out_vars (tree vars) } /* Generate a static constructor (if CONSTRUCTOR_P) or destructor - (otherwise) that will initialize all gobal objects with static + (otherwise) that will initialize all global objects with static storage duration having the indicated PRIORITY. */ static void |