From 7efda05490056e0aa23cd533dce528294af6b4b1 Mon Sep 17 00:00:00 2001 From: Bryce McKinlay Date: Fri, 24 May 2002 09:19:55 +0000 Subject: tree.c (decl_type_context): Return NULL_TREE if decl's context is a namespace. * tree.c (decl_type_context): Return NULL_TREE if decl's context is a namespace. From-SVN: r53828 --- gcc/tree.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gcc/tree.c') diff --git a/gcc/tree.c b/gcc/tree.c index 17731c8..58ec6f8 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -4212,6 +4212,9 @@ decl_type_context (decl) while (context) { + if (TREE_CODE (context) == NAMESPACE_DECL) + return NULL_TREE; + if (TREE_CODE (context) == RECORD_TYPE || TREE_CODE (context) == UNION_TYPE || TREE_CODE (context) == QUAL_UNION_TYPE) -- cgit v1.1