Update of /cvsroot/mockpp/mockpp/mockpp/util
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19465/mockpp/util
Modified Files:
AssertMo.cpp
Log Message:
forward failures without execptions
Index: AssertMo.cpp
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/util/AssertMo.cpp,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- AssertMo.cpp 3 Dec 2005 13:10:12 -0000 1.22
+++ AssertMo.cpp 23 Dec 2005 22:03:30 -0000 1.23
@@ -124,7 +124,7 @@
{
mockpp::String fmt = mockpp_i18n(MOCKPP_PCHAR("Not Implemented in %1."));
fmt << mockName;
- forwardMalfunctionData(NotImplementedException(srcline, srcfile, fmt));
+ MOCKPP_THROW(NotImplementedException(srcline, srcfile, fmt));
}
|