From 71dc5185e3f294f0cd80eca44861bfb2e9615dab Mon Sep 17 00:00:00 2001 From: "jdunn%netscape.com" Date: Thu, 20 Apr 2000 01:33:29 +0000 Subject: [PATCH] Structs are inheritently private, so friend is required r= waterson@netscape.com --- rdf/base/src/nsFixedSizeAllocator.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rdf/base/src/nsFixedSizeAllocator.h b/rdf/base/src/nsFixedSizeAllocator.h index f4e9d8d9213e..8045782e19da 100644 --- a/rdf/base/src/nsFixedSizeAllocator.h +++ b/rdf/base/src/nsFixedSizeAllocator.h @@ -45,6 +45,10 @@ protected: PLArenaPool mPool; struct Bucket; + struct FreeEntry; + + friend struct Bucket; + friend struct FreeEntry; struct FreeEntry { Bucket* mBucket;