oops, one more try to back out

git-svn-id: svn://10.0.0.236/trunk@109063 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
alecf%netscape.com 2001-11-27 23:55:03 +00:00
parent 9e40851eab
commit e529936b5b

View File

@ -39,8 +39,6 @@
#include "nsCom.h"
#include "nsString.h"
#include "nsFixedSizeAllocator.h"
class nsIObjectInputStream;
class nsIObjectOutputStream;
@ -49,7 +47,13 @@ class nsStringKey;
class NS_COM nsHashKey {
protected:
nsHashKey(void);
nsHashKey(void) {
#ifdef DEBUG
mKeyType = UnknownKey;
#endif
MOZ_COUNT_CTOR(nsHashKey);
}
public:
virtual ~nsHashKey(void);
@ -103,7 +107,6 @@ class NS_COM nsHashtable {
PRLock* mLock;
PLHashTable mHashtable;
PRBool mEnumerating;
nsFixedSizeAllocator mPool;
public:
nsHashtable(PRUint32 aSize = 16, PRBool threadSafe = PR_FALSE);