boehm-gc: revert all CACAO-specific modifications; this is now an exact copy of the...
[cacao.git] / src / mm / boehm-gc / gc_cpp.cc
index 47cff19e309c17be01fb9cc94253a9f6c00772cd..f46388c9f3ad0fff3f8df006528fc0fdc8df40b8 100644 (file)
@@ -56,11 +56,13 @@ void* operator new( size_t size,
 #endif
 }
 
+#if _MSC_VER > 1020
 // This new operator is used by VC++ 7.0 and later in Debug builds.
 void* operator new[](size_t size, int nBlockUse, const char* szFileName, int nLine)
 {
     return operator new(size, nBlockUse, szFileName, nLine);
 }
+#endif
 
 #endif /* _MSC_VER */