From 8e7d7fa0d52a3971f8389ee917d7a1a28354a938 Mon Sep 17 00:00:00 2001 From: Gabriel Dos Reis Date: Sun, 16 Mar 2003 10:11:02 +0000 Subject: [PATCH] Fix rethinko. From-SVN: r64431 --- gcc/cp/decl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index 75ac6d3b88e..6d682510630 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -2091,7 +2091,7 @@ binding_for_name (tree name, tree scope) BINDING_SCOPE (result) = scope; result->is_local = false; result->value_is_inherited = false; - result->has_level = true; + result->has_level = false; IDENTIFIER_NAMESPACE_BINDINGS (name) = result; return result; } -- 2.30.2