diff options
| author | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-22 05:10:21 +0000 |
|---|---|---|
| committer | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-22 05:10:21 +0000 |
| commit | 141efd27417ceb7f5799ad0ea395579ddceee0b9 (patch) | |
| tree | e3525fd140e388ac801577383b0db4bc37d54acb | |
| parent | d23542052a18ac4b5055c2712beddbd9b9d0f135 (diff) | |
| download | ppe42-gcc-141efd27417ceb7f5799ad0ea395579ddceee0b9.tar.gz ppe42-gcc-141efd27417ceb7f5799ad0ea395579ddceee0b9.zip | |
* name-lookup.c (anonymous_namespace_name): Make static.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81001 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/cp/name-lookup.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 2d691dcfced..42deed34b15 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2004-04-22 Alan Modra <amodra@bigpond.net.au> + + * name-lookup.c (anonymous_namespace_name): Make static. + 2004-04-19 Roger Sayle <roger@eyesopen.com> PR middle-end/14531 diff --git a/gcc/cp/name-lookup.c b/gcc/cp/name-lookup.c index 52d4d770ba8..7b1ff39ca91 100644 --- a/gcc/cp/name-lookup.c +++ b/gcc/cp/name-lookup.c @@ -50,7 +50,7 @@ tree global_namespace; /* The name of the anonymous namespace, throughout this translation unit. */ -GTY(()) tree anonymous_namespace_name; +static GTY(()) tree anonymous_namespace_name; /* Compute the chain index of a binding_entry given the HASH value of its |

