[Cppunit-devel] omitting semicolon on cppunit-1.9.10
Brought to you by:
blep
|
From: IIZUKA D. <ii...@mt...> - 2002-11-13 15:35:17
|
Hi.
I found a tiny bug : omitting semicolon on cppunit-1.9.10 source code.
Here is a patch.
--- cppunit-1.9.10.orig/src/cppunit/DefaultProtector.cpp
+++ cppunit-1.9.10/src/cppunit/DefaultProtector.cpp
@@ -24,7 +24,7 @@
#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 );
|