Update of /cvsroot/mockpp/mockpp/mockpp/stub
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9920/mockpp/stub
Modified Files:
ThrowStub.h
Log Message:
renamed a number of internal variables to avoid warning messages
Index: ThrowStub.h
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/stub/ThrowStub.h,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- ThrowStub.h 8 Apr 2006 12:00:37 -0000 1.35
+++ ThrowStub.h 26 Apr 2006 20:43:06 -0000 1.36
@@ -98,15 +98,15 @@
/** Creates the object
* @param throwable pointer to the object to throw
*/
- ThrowStub( Throwable *throwable )
- : ThrowStubBase<R>(throwable)
+ ThrowStub( Throwable *in_throwable )
+ : ThrowStubBase<R>(in_throwable)
{}
/** Creates the object
* @param throwable the object to throw
*/
- ThrowStub( ThrowableItem &throwable )
- : ThrowStubBase<R>(throwable)
+ ThrowStub( ThrowableItem &in_throwable )
+ : ThrowStubBase<R>(in_throwable)
{}
/** Mock the invocation without passing parameters.
@@ -130,17 +130,17 @@
public:
/** Creates the object
- * @param throwable pointer to the object to throw
+ * @param in_throwable pointer to the object to throw
*/
- ThrowStub( Throwable *throwable )
- : ThrowStubBase<void>(throwable)
+ ThrowStub( Throwable *in_throwable )
+ : ThrowStubBase<void>(in_throwable)
{}
/** Creates the object
- * @param throwable the object to throw
+ * @param in_throwable the object to throw
*/
- ThrowStub( ThrowableItem &throwable )
- : ThrowStubBase<void>(throwable)
+ ThrowStub( ThrowableItem &in_throwable )
+ : ThrowStubBase<void>(in_throwable)
{}
/** Mock the invocation without passing parameters.
|