From e210106003b1e214b12341e4955b7119b0d49f09 Mon Sep 17 00:00:00 2001 From: Eric Schendel Date: Mon, 16 Sep 2002 16:31:50 +0000 Subject: Missing semicolon when CPPUNIT_USE_TYPEINFO_NAME not used --- src/cppunit/DefaultProtector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cppunit/DefaultProtector.cpp') 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 ); -- cgit v1.2.1