tree.c (decl_function_context): Don't treat C++ member functions of classes declared in a function...
* tree.c (decl_function_context): Don't treat C++ member functions of classes declared in a function, as nested functions. From-SVN: r8065
This commit is contained in:
parent
c3898ccd98
commit
fe1e3bf47e
@ -3850,7 +3850,7 @@ decl_function_context (decl)
|
||||
{
|
||||
if (TREE_CODE (context) == RECORD_TYPE
|
||||
|| TREE_CODE (context) == UNION_TYPE)
|
||||
context = TYPE_CONTEXT (context);
|
||||
context = NULL_TREE;
|
||||
else if (TREE_CODE (context) == TYPE_DECL)
|
||||
context = DECL_CONTEXT (context);
|
||||
else if (TREE_CODE (context) == BLOCK)
|
||||
|
Loading…
Reference in New Issue
Block a user