Backed out changeset da0d9bc38cad

This commit is contained in:
Dão Gottwald 2011-09-27 10:52:51 +02:00
parent c9d08ded04
commit e9edba93dd
2 changed files with 2 additions and 2 deletions

View File

@ -1579,7 +1579,7 @@ public:
void WarnOnceAbout(DeprecatedOperations aOperation);
private:
PRUint64 mWarnedAbout;
PRUint32 mWarnedAbout;
protected:
~nsIDocument()

View File

@ -8156,7 +8156,7 @@ static const char* kWarnings[] = {
void
nsIDocument::WarnOnceAbout(DeprecatedOperations aOperation)
{
PR_STATIC_ASSERT(eDeprecatedOperationCount <= 64);
PR_STATIC_ASSERT(eDeprecatedOperationCount <= 32);
if (mWarnedAbout & (1 << aOperation)) {
return;
}