[Mockpp-commits] mockpp/mockpp/chaining InvocationMocker.h,1.25,1.26
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-03-20 15:09:36
|
Update of /cvsroot/mockpp/mockpp/mockpp/chaining In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21470/mockpp/chaining Modified Files: InvocationMocker.h Log Message: MSVC 7.1 patch Index: InvocationMocker.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/InvocationMocker.h,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- InvocationMocker.h 12 Mar 2005 17:50:54 -0000 1.25 +++ InvocationMocker.h 20 Mar 2005 15:09:27 -0000 1.26 @@ -82,7 +82,7 @@ public: - typedef std::vector<InvocationMatcher<I>*> List; + typedef typename std::vector<InvocationMatcher<I>*> List; typedef typename List::iterator Iterator; typedef typename List::const_iterator ConstIterator; @@ -200,7 +200,7 @@ * @return The current content of the buffer data */ virtual String describeTo( String &result, - const InvocationMockerBase<R,I>::List &matchers, + const typename InvocationMockerBase<R,I>::List &matchers, Stub<R, I> *stub, const String &name ) const = 0; |