just adding MOZ_COUNT_CTOR/DTOR - no functional changes

git-svn-id: svn://10.0.0.236/trunk@108990 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
alecf%netscape.com 2001-11-27 06:27:13 +00:00
parent f14b46ebdc
commit d692d783a1

View File

@ -86,6 +86,7 @@ private:
nsCompressedMap::nsCompressedMap(PRUnichar *aTable, PRUint32 aSize)
{
MOZ_COUNT_CTOR(nsCompressedMap);
mTable = aTable;
mSize = aSize;
mLastBase = 0;
@ -96,6 +97,7 @@ nsCompressedMap::nsCompressedMap(PRUnichar *aTable, PRUint32 aSize)
nsCompressedMap::~nsCompressedMap()
{
MOZ_COUNT_DTOR(nsCompressedMap);
delete[] mCache;
}