Unbreak DEBUG_CC on Windows (calling convention mismatch); apparently nobody really uses it there. NPOTDB, rs=sicking

This commit is contained in:
jwalden@mit.edu 2007-08-30 14:47:26 -07:00
Родитель cb258c722e
Коммит 22298007e4
1 изменённых файлов: 5 добавлений и 5 удалений

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

@ -1876,15 +1876,15 @@ public:
return mSuppressThisNode;
}
void DescribeNode(nsrefcnt refCount, size_t objSz, const char *objName)
NS_METHOD_(void) DescribeNode(nsrefcnt refCount, size_t objSz, const char *objName)
{
mSuppressThisNode = (PL_strstr(sSuppressionList, objName) != nsnull);
}
void NoteXPCOMChild(nsISupports *child) {}
void NoteScriptChild(PRUint32 langID, void *child) {}
void NoteNativeChild(void *child,
nsCycleCollectionParticipant *participant) {}
NS_METHOD_(void) NoteXPCOMChild(nsISupports *child) {}
NS_METHOD_(void) NoteScriptChild(PRUint32 langID, void *child) {}
NS_METHOD_(void) NoteNativeChild(void *child,
nsCycleCollectionParticipant *participant) {}
};
char *Suppressor::sSuppressionList = nsnull;