Update of /cvsroot/mockpp/mockpp/mockpp/util
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14452/mockpp/util
Modified Files:
AutoPointer.h
Log Message:
problem with #if
Index: AutoPointer.h
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/util/AutoPointer.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- AutoPointer.h 22 Mar 2005 22:03:26 -0000 1.12
+++ AutoPointer.h 23 Mar 2005 21:13:10 -0000 1.13
@@ -62,7 +62,7 @@
{
}
-#if _MSC_VER < 1400 // at least not MSCV6
+#if defined(_MSC_VER) && (_MSC_VER < 1300) // at least not MSCV6
// MAT : hmm dont know how it can actually work properly without this operator ?!
#else
|