The c++ standard requires that the throw list be used when declaring functions as well as defining them.

commercial compiler fixes for bug #149032


git-svn-id: svn://10.0.0.236/trunk@124604 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
seawood%netscape.com
2002-07-03 17:14:41 +00:00
parent 54697924df
commit 08f53dff2a
30 changed files with 45 additions and 45 deletions

View File

@@ -800,8 +800,8 @@ nsHashKey* AttributeKey::Clone(void) const
class HTMLStyleSheetImpl : public nsIHTMLStyleSheet,
public nsIStyleRuleProcessor {
public:
void* operator new(size_t size);
void* operator new(size_t size, nsIArena* aArena);
void* operator new(size_t size) CPP_THROW_NEW;
void* operator new(size_t size, nsIArena* aArena) CPP_THROW_NEW;
void operator delete(void* ptr);
HTMLStyleSheetImpl(void);