Bug 96108: Fix Win32/opt horkage (SizeOf()) in nsSmallVoidArray should be

#if dEBUG)
This commit is contained in:
rjesup%wgate.com 2005-11-02 16:04:56 +00:00
Родитель 3650d4c81e
Коммит 072f6676ee
2 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -1224,6 +1224,7 @@ nsSmallVoidArray::operator=(nsSmallVoidArray& other)
return *this;
}
#ifdef DEBUG
void
nsSmallVoidArray::SizeOf(nsISizeOfHandler* aHandler, PRUint32* aResult) const
{
@ -1238,6 +1239,7 @@ nsSmallVoidArray::SizeOf(nsISizeOfHandler* aHandler, PRUint32* aResult) const
*aResult = sizeof(*this) + size;
}
}
#endif
PRInt32
nsSmallVoidArray::GetArraySize() const

Просмотреть файл

@ -342,7 +342,9 @@ public:
nsSmallVoidArray& operator=(nsSmallVoidArray& other);
void* operator[](PRInt32 aIndex) const { return ElementAt(aIndex); }
#ifdef DEBUG
virtual void SizeOf(nsISizeOfHandler* aHandler, PRUint32* aResult) const;
#endif
PRInt32 GetArraySize() const;
PRInt32 Count() const;