[Mockpp-commits] mockpp/mockpp/util AutoPointer.h,1.11,1.12
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-03-22 22:03:53
|
Update of /cvsroot/mockpp/mockpp/mockpp/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9976/mockpp/util Modified Files: AutoPointer.h Log Message: integrated patches for msvc 7.1 Index: AutoPointer.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/util/AutoPointer.h,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- AutoPointer.h 30 Dec 2004 20:54:06 -0000 1.11 +++ AutoPointer.h 22 Mar 2005 22:03:26 -0000 1.12 @@ -62,7 +62,9 @@ { } -#ifndef _MSC_VER // at least not MSCV6 +#if _MSC_VER < 1400 // at least not MSCV6 + // MAT : hmm dont know how it can actually work properly without this operator ?! +#else AutoPointer& operator= (const AutoPointer& rhs) { |