Update of /cvsroot/mockpp/mockpp/mockpp/util
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7837/mockpp/util
Modified Files:
AssertMo.cpp
Log Message:
optionally disable exceptions
Index: AssertMo.cpp
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/util/AssertMo.cpp,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- AssertMo.cpp 26 Nov 2005 18:00:17 -0000 1.20
+++ AssertMo.cpp 27 Nov 2005 17:27:57 -0000 1.21
@@ -124,7 +124,7 @@
{
mockpp::String fmt = mockpp_i18n(MOCKPP_PCHAR("Not Implemented in %1."));
fmt << mockName;
- throw NotImplementedException(srcline, srcfile, fmt);
+ MOCKPP_THROW(NotImplementedException(srcline, srcfile, fmt));
}
|