Update of /cvsroot/mockpp/mockpp/mockpp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24238/mockpp
Modified Files:
ChainableMockObject.h
Log Message:
added missing &
Index: ChainableMockObject.h
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/ChainableMockObject.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- ChainableMockObject.h 29 Jul 2005 10:07:24 -0000 1.26
+++ ChainableMockObject.h 19 Sep 2005 18:42:08 -0000 1.27
@@ -390,8 +390,8 @@
#define MOCKPP_VOID_CHAINABLE3(classname, name, type1, type2, type3) \
public: \
void name(const type1 ¶m1, const type2 ¶m2, const type3 ¶m3) \
- MOCKPP_VOID_CHAINABLE3_IMPL(classname, name, const type1 &, const type2, const type3 &, \
- name, type1, type2, type3)
+ MOCKPP_VOID_CHAINABLE3_IMPL(classname, name, const type1 &, const type2 &, const type3 &, \
+ name, type1, type2, type3)
/** Implements a const method with 3 parameters for a mock object.
* Serves also as a backwards compatibility macro.
|