[Mockpp-commits] mockpp/mockpp/chaining Invocation.h,1.12,1.13
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-03-24 20:51:39
|
Update of /cvsroot/mockpp/mockpp/mockpp/chaining In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11678/mockpp/chaining Modified Files: Invocation.h Log Message: fixed compiler warnings Index: Invocation.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/Invocation.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- Invocation.h 4 Mar 2005 23:35:55 -0000 1.12 +++ Invocation.h 24 Mar 2005 20:51:28 -0000 1.13 @@ -175,6 +175,7 @@ */ bool equals( const InvocationBase &other ) const { + MOCKPP_UNUSED(other); return false; } @@ -249,6 +250,7 @@ */ bool equals( const InvocationBase &other ) const { + MOCKPP_UNUSED(other); return false; } @@ -337,6 +339,7 @@ */ bool equals( const InvocationBase &other ) const { + MOCKPP_UNUSED(other); return false; } @@ -439,6 +442,7 @@ */ bool equals( const InvocationBase &other ) const { + MOCKPP_UNUSED(other); return false; } @@ -555,6 +559,7 @@ */ bool equals( const InvocationBase &other ) const { + MOCKPP_UNUSED(other); return false; } |