[Mockpp-commits] mockpp/mockpp/stub ThrowStub.h,1.28,1.29
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-04-02 13:47:21
|
Update of /cvsroot/mockpp/mockpp/mockpp/stub In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31668/mockpp/stub Modified Files: ThrowStub.h Log Message: fixes for cygwin (unicode+ascii) Index: ThrowStub.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/stub/ThrowStub.h,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- ThrowStub.h 25 Mar 2005 16:30:29 -0000 1.28 +++ ThrowStub.h 2 Apr 2005 13:46:32 -0000 1.29 @@ -160,7 +160,7 @@ */ #define MOCKPP_THROWSTUB_PTI_DECL \ template<> \ -void mockpp::ThrowStub<void>::typelessInvoke(); +void ::mockpp::ThrowStub<void>::typelessInvoke(); \ /** Implement specialized methods for mockpp::InvocationMocker. @@ -168,10 +168,10 @@ */ #define MOCKPP_THROWSTUB_PTI_IMPL \ template<> \ -void mockpp::ThrowStub<void>::typelessInvoke() \ +void ::mockpp::ThrowStub<void>::typelessInvoke() \ { \ this->throwable.get()->throw_me(); \ -} +} #endif // MOCKPP_PTI_WEAKNESS |