From ac3d9c907bba1916c242ba36fac61c886fdc4b3c Mon Sep 17 00:00:00 2001 From: "jdunn%netscape.com" Date: Thu, 6 Jan 2000 00:43:19 +0000 Subject: [PATCH] |T| requires an accessible default constructor (on some old compilers) r= scc@netscape.com --- netwerk/cache/mgr/nsCachedNetData.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netwerk/cache/mgr/nsCachedNetData.h b/netwerk/cache/mgr/nsCachedNetData.h index 35636faa9cf..57947b02fba 100644 --- a/netwerk/cache/mgr/nsCachedNetData.h +++ b/netwerk/cache/mgr/nsCachedNetData.h @@ -134,11 +134,11 @@ protected: friend class CacheOutputStream; friend class InterceptStreamListener; -private: - +protected: nsCachedNetData() {}; virtual ~nsCachedNetData() {}; +private: // Initialize internal fields of this nsCachedNetData instance from the // underlying raw cache database record. nsresult Deserialize(PRBool aDeserializeFlags);