exception::what() const throw()

git-svn-id: https://profuse.googlecode.com/svn/branches/v2@403 aa027e90-d47c-11dd-86d7-074df07e0730
This commit is contained in:
ksherlock 2012-08-31 00:17:35 +00:00
parent 818ab5f602
commit 25ad5cf7f5
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ Exception::~Exception() throw()
{
}
const char *Exception::what()
const char *Exception::what() const throw()
{
return _string.c_str();
}

View File

@ -14,7 +14,7 @@ public:
virtual ~Exception() throw ();
virtual const char *what();
virtual const char *what() const throw();
virtual const char *errorString();
int error() const { return _error; }