Corrected exception specifier on DOMBadCast destructor

This commit is contained in:
jez 2010-12-10 09:29:10 +00:00
parent f7146a5668
commit bec9948659

View file

@ -27,6 +27,10 @@ public:
{ {
} // DOMBadCase } // DOMBadCase
virtual ~DOMBadCast() throw()
{
} // DOMBadCast
virtual const char* what() const throw() virtual const char* what() const throw()
{ {
return message_.c_str(); return message_.c_str();
@ -73,6 +77,10 @@ public:
{ {
} // DOMException } // DOMException
virtual ~DOMException() throw()
{
} // DOMBadCast
CODE code() const { return code_; } CODE code() const { return code_; }
virtual const char* what() const throw() virtual const char* what() const throw()