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

git-svn-id: svn://10.0.0.236/trunk@233436 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jwalden%mit.edu
2007-08-30 21:47:26 +00:00
parent 7ab5d9b845
commit 117e3a6eeb

View File

@@ -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;