|T| requires an accessible default constructor (on some old compilers)

r= scc@netscape.com
This commit is contained in:
jdunn%netscape.com 2000-01-06 00:43:19 +00:00
Родитель bc0dde3bfe
Коммит ac3d9c907b
1 изменённых файлов: 2 добавлений и 2 удалений

4
netwerk/cache/mgr/nsCachedNetData.h поставляемый
Просмотреть файл

@ -134,11 +134,11 @@ protected:
friend class CacheOutputStream; friend class CacheOutputStream;
friend class InterceptStreamListener; friend class InterceptStreamListener;
private: protected:
nsCachedNetData() {}; nsCachedNetData() {};
virtual ~nsCachedNetData() {}; virtual ~nsCachedNetData() {};
private:
// Initialize internal fields of this nsCachedNetData instance from the // Initialize internal fields of this nsCachedNetData instance from the
// underlying raw cache database record. // underlying raw cache database record.
nsresult Deserialize(PRBool aDeserializeFlags); nsresult Deserialize(PRBool aDeserializeFlags);