[Mockpp-commits] mockpp/mockpp/tests AbstractDynamicChainingMock_test.cpp,1.22,1.23 ChainingMockObje
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-03-22 22:03:36
|
Update of /cvsroot/mockpp/mockpp/mockpp/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9976/mockpp/tests Modified Files: AbstractDynamicChainingMock_test.cpp ChainingMockObjectSupport_test.cpp CustomStub_test.cpp MyBuilderNamespace.h VerifyingTestCaller_test.cpp classes_ABCDE.h Log Message: integrated patches for msvc 7.1 Index: VerifyingTestCaller_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VerifyingTestCaller_test.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- VerifyingTestCaller_test.cpp 27 Feb 2005 11:48:16 -0000 1.3 +++ VerifyingTestCaller_test.cpp 22 Mar 2005 22:03:26 -0000 1.4 @@ -37,7 +37,7 @@ #include <stdexcept> -#ifdef _MSC_VER // at least MSCV6 incomplete +#if (_MSC_VER < 1400) // at least MSCV6 incomplete # include <mockpp/util/AutoPointer.h> #else # include <memory> Index: MyBuilderNamespace.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/MyBuilderNamespace.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- MyBuilderNamespace.h 12 Mar 2005 17:50:55 -0000 1.12 +++ MyBuilderNamespace.h 22 Mar 2005 22:03:26 -0000 1.13 @@ -79,7 +79,7 @@ allBuilders.clear(); } - virtual void addPendingRecorder(const mockpp::String &id, mockpp::InvokedRecorder::AP) + virtual void addPendingRecorder(const mockpp::String & /*id*/, mockpp::InvokedRecorder::AP) { } Index: ChainingMockObjectSupport_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainingMockObjectSupport_test.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- ChainingMockObjectSupport_test.cpp 13 Mar 2005 19:13:26 -0000 1.25 +++ ChainingMockObjectSupport_test.cpp 22 Mar 2005 22:03:26 -0000 1.26 @@ -417,7 +417,7 @@ return buffer; } - virtual int invoke( const int &invocation ) + virtual int invoke( const int &/*invocation*/ ) { return 0; } Index: classes_ABCDE.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/classes_ABCDE.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- classes_ABCDE.h 4 Mar 2005 17:40:32 -0000 1.6 +++ classes_ABCDE.h 22 Mar 2005 22:03:26 -0000 1.7 @@ -46,7 +46,7 @@ return c == o.c; } - bool operator<( const CA &o ) const + bool operator<( const CA &/*o*/ ) const { return true; } @@ -72,7 +72,7 @@ return c == o.c; } - bool operator<( const CB &o ) const + bool operator<( const CB &/*o*/ ) const { return true; } @@ -98,7 +98,7 @@ return c == o.c; } - bool operator<( const CC &o ) const + bool operator<( const CC &/*o*/ ) const { return true; } @@ -124,7 +124,7 @@ return c == o.c; } - bool operator<( const CD &o ) const + bool operator<( const CD &/*o*/ ) const { return true; } @@ -150,7 +150,7 @@ return c == o.c; } - bool operator<( const CE &o ) const + bool operator<( const CE &/*o*/ ) const { return true; } Index: AbstractDynamicChainingMock_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/AbstractDynamicChainingMock_test.cpp,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- AbstractDynamicChainingMock_test.cpp 12 Mar 2005 17:50:55 -0000 1.22 +++ AbstractDynamicChainingMock_test.cpp 22 Mar 2005 22:03:25 -0000 1.23 @@ -120,7 +120,7 @@ bool enable_except; bool is_invoke; // - virtual bool matches( const I &invocation ) + virtual bool matches( const I &/*invocation*/ ) { return match_result; } Index: CustomStub_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/CustomStub_test.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- CustomStub_test.cpp 30 Dec 2004 20:54:06 -0000 1.9 +++ CustomStub_test.cpp 22 Mar 2005 22:03:26 -0000 1.10 @@ -67,7 +67,7 @@ { } - virtual R invoke( const I &invocation ) + virtual R invoke( const I & /*invocation*/ ) { return R(); } |