From 2576275e3411abd5a015b2018a03701f3404e240 Mon Sep 17 00:00:00 2001 From: jason Date: Sat, 1 Jul 2006 22:02:56 +0000 Subject: [PATCH] revert accidental checkin git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@115119 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cp/search.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gcc/cp/search.c b/gcc/cp/search.c index 2af5e04..21d1b77 100644 --- a/gcc/cp/search.c +++ b/gcc/cp/search.c @@ -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 -- 2.7.4