summaryrefslogtreecommitdiff
path: root/src/cppunit/Exception.cpp
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2001-10-19 17:37:24 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2001-10-19 17:37:24 +0000
commitda94615a45b2e4e2a42d35e2439a7bf371a706d7 (patch)
tree50b123f1e302e7396240184f29764e1db0fc35a1 /src/cppunit/Exception.cpp
parente27118dd97d6125d3869b4972eff8da5996a768c (diff)
downloadcppunit-da94615a45b2e4e2a42d35e2439a7bf371a706d7.tar.gz
Include/cppunit/Exception.
include/cppunit/Exception.h: * src/cppunit/Exception.cpp: what(), added back the throw() qualifier.
Diffstat (limited to 'src/cppunit/Exception.cpp')
-rw-r--r--src/cppunit/Exception.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cppunit/Exception.cpp b/src/cppunit/Exception.cpp
index f449152..add261a 100644
--- a/src/cppunit/Exception.cpp
+++ b/src/cppunit/Exception.cpp
@@ -78,7 +78,7 @@ Exception::operator =( const Exception& other )
/// Return descriptive message
const char*
-Exception::what() const
+Exception::what() const throw()
{
return m_message.c_str ();
}