mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 19:51:34 +08:00
revert accidental checkin
From-SVN: r115119
This commit is contained in:
parent
cf5131b464
commit
bdc3400fb3
@ -792,12 +792,11 @@ friend_accessible_p (tree scope, tree decl, tree binfo)
|
||||
if (protected_accessible_p (decl, TREE_VALUE (t), binfo))
|
||||
return 1;
|
||||
|
||||
/* Nested classes have the same access as their enclosing types, as
|
||||
/* Nested classes are implicitly friends of their enclosing types, as
|
||||
per core issue 45 (this is a change from the standard). */
|
||||
if (TYPE_P (scope))
|
||||
for (t = TYPE_CONTEXT (scope); t && TYPE_P (t); t = TYPE_CONTEXT (t))
|
||||
if (protected_accessible_p (decl, t, binfo)
|
||||
|| friend_accessible_p (t, decl, binfo))
|
||||
if (protected_accessible_p (decl, t, binfo))
|
||||
return 1;
|
||||
|
||||
if (TREE_CODE (scope) == FUNCTION_DECL
|
||||
|
Loading…
x
Reference in New Issue
Block a user