diff options
-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 2d691dc..42deed3 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 52d4d77..7b1ff39 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 |