Fixing build bustage on Tru64 UNIX. Part of bug 252326.

git-svn-id: svn://10.0.0.236/trunk@162980 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jst%mozilla.jstenback.com
2004-09-29 22:10:50 +00:00
parent 841688e9b9
commit f49d0452b6

View File

@@ -366,9 +366,9 @@ protected:
PRBool mIsHandlingUserInput;
private:
// Not meant to be implemented.
static void* operator new(size_t /*size*/) CPP_THROW_NEW;
static void operator delete(void* /*memory*/);
// Hide so that this class can only be stack-allocated
static void* operator new(size_t /*size*/) CPP_THROW_NEW { return nsnull; }
static void operator delete(void* /*memory*/) {}
};
#endif // nsEventStateManager_h__