summaryrefslogtreecommitdiff
path: root/src/cppunit/DefaultProtector.cpp
diff options
context:
space:
mode:
authorEric Schendel <esche@sourceforge.net>2002-09-16 16:31:50 +0000
committerEric Schendel <esche@sourceforge.net>2002-09-16 16:31:50 +0000
commite210106003b1e214b12341e4955b7119b0d49f09 (patch)
tree33f769fe01ff9b87de9d9bbea6e0b5c84e890896 /src/cppunit/DefaultProtector.cpp
parent4cc417314b4ebd1821022b01b4fcd97b01b91679 (diff)
downloadcppunit-e210106003b1e214b12341e4955b7119b0d49f09.tar.gz
Missing semicolon when CPPUNIT_USE_TYPEINFO_NAME not used
Diffstat (limited to 'src/cppunit/DefaultProtector.cpp')
-rw-r--r--src/cppunit/DefaultProtector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cppunit/DefaultProtector.cpp b/src/cppunit/DefaultProtector.cpp
index 72460a2..6fb306b 100644
--- a/src/cppunit/DefaultProtector.cpp
+++ b/src/cppunit/DefaultProtector.cpp
@@ -24,7 +24,7 @@ DefaultProtector::protect( const Functor &functor,
#if CPPUNIT_USE_TYPEINFO_NAME
shortDescription += TypeInfoHelper::getClassName( typeid(e) );
#else
- shortDescription += "std::exception (or derived)."
+ shortDescription += "std::exception (or derived).";
#endif
Message message( shortDescription, e.what() );
reportError( context, message );