[Mockpp-commits] mockpp/mockpp/stub TestFailureStub.h,1.19,1.20 TypelessStub.h,1.12,1.13
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-03-24 20:51:40
|
Update of /cvsroot/mockpp/mockpp/mockpp/stub In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11678/mockpp/stub Modified Files: TestFailureStub.h TypelessStub.h Log Message: fixed compiler warnings Index: TypelessStub.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/stub/TypelessStub.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- TypelessStub.h 11 Mar 2005 00:24:57 -0000 1.12 +++ TypelessStub.h 24 Mar 2005 20:51:30 -0000 1.13 @@ -139,6 +139,7 @@ */ virtual R invoke( const I &invocation ) { + MOCKPP_UNUSED(invocation); return this->stubber->typelessInvoke(); } }; @@ -169,6 +170,7 @@ */ virtual void invoke( const I &invocation ) { + MOCKPP_UNUSED(invocation); this->stubber->typelessInvoke(); } }; Index: TestFailureStub.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/stub/TestFailureStub.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- TestFailureStub.h 6 Jan 2005 13:09:23 -0000 1.19 +++ TestFailureStub.h 24 Mar 2005 20:51:30 -0000 1.20 @@ -66,6 +66,7 @@ */ virtual R invoke( const I &invocation ) { + MOCKPP_UNUSED(invocation); throw AssertionFailedError(__LINE__, __FILE__, errorMessage); } |