Fix mismatched delete

This commit is contained in:
bruce%cybersight.com 1999-09-26 18:12:39 +00:00
parent 61664c7872
commit 21c66044ed

View File

@ -79,7 +79,7 @@ nsCompressedMap::nsCompressedMap(PRUnichar *aTable, PRUint32 aSize)
nsCompressedMap::~nsCompressedMap()
{
delete mCache;
delete[] mCache;
}
PRUnichar nsCompressedMap::Map(PRUnichar aChar)