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

This commit is contained in:
jst%mozilla.jstenback.com 2004-09-29 22:10:30 +00:00
Родитель 22b28f33be
Коммит ac47282c45
1 изменённых файлов: 3 добавлений и 3 удалений

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

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