--------------------- PatchSet 131 Date: 2002/11/06 08:34:29 Author: rbcollins Branch: refcount Tag: (none) Log: initialize count\! Members: include/RefCount.h:1.1.2.1->1.1.2.2 Index: squid3/include/RefCount.h =================================================================== RCS file: /cvsroot/squid-sf//squid3/include/RefCount.h,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -r1.1.2.1 -r1.1.2.2 --- squid3/include/RefCount.h 6 Nov 2002 06:57:35 -0000 1.1.2.1 +++ squid3/include/RefCount.h 6 Nov 2002 08:34:29 -0000 1.1.2.2 @@ -1,6 +1,6 @@ /* - * $Id: RefCount.h,v 1.1.2.1 2002/11/06 06:57:35 rbcollins Exp $ + * $Id: RefCount.h,v 1.1.2.2 2002/11/06 08:34:29 rbcollins Exp $ * * DEBUG: section xx Refcount allocator * AUTHOR: Robert Collins @@ -76,6 +76,7 @@ template class RefCountable { public: + RefCountable():count_(0){} virtual ~RefCountable(){} virtual void deleteSelf() = 0; private: