diff options
author | Gabor Greif <ggreif@lucent.com> | 2003-02-07 14:44:19 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2003-02-07 14:44:19 +0000 |
commit | 10d2dbe209e9784468f950fb0e9ae49e179ee8d6 (patch) | |
tree | e88f631de8abce2a3c02a76312a51fff1d12766b | |
parent | ccef8307ffbb30a57370ab2ba5abdd3637cb24df (diff) | |
download | gcc-10d2dbe209e9784468f950fb0e9ae49e179ee8d6.zip gcc-10d2dbe209e9784468f950fb0e9ae49e179ee8d6.tar.gz gcc-10d2dbe209e9784468f950fb0e9ae49e179ee8d6.tar.bz2 |
* doc/c-tree.texi (Namespaces): Fix typo.
From-SVN: r62522
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/doc/c-tree.texi | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 948e11d..cbf69e6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-02-07 Gabor Greif <ggreif@lucent.com> + + * doc/c-tree.texi (Namespaces): Fix typo. + Fri Feb 7 02:18:57 CET 2003 Jan Hubicka <jh@suse.cz> * regrename.c (do_replace, find_oldest_value_reg, diff --git a/gcc/doc/c-tree.texi b/gcc/doc/c-tree.texi index 8f5a5bb..fbc90fa 100644 --- a/gcc/doc/c-tree.texi +++ b/gcc/doc/c-tree.texi @@ -1,4 +1,4 @@ -@c Copyright (c) 1999, 2000, 2001 Free Software Foundation, Inc. +@c Copyright (c) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. @c Free Software Foundation, Inc. @c This is part of the GCC manual. @c For copying conditions, see the file gcc.texi. @@ -645,7 +645,7 @@ the unqualified name of the name of the namespace (@pxref{Identifiers}). The name of the global namespace is @samp{::}, even though in C++ the global namespace is unnamed. However, you should use comparison with @code{global_namespace}, rather than @code{DECL_NAME} to determine -whether or not a namespaces is the global one. An unnamed namespace +whether or not a namespace is the global one. An unnamed namespace will have a @code{DECL_NAME} equal to @code{anonymous_namespace_name}. Within a single translation unit, all unnamed namespaces will have the same name. |