]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/memory.cpp
compilation fixes
[wxWidgets.git] / src / common / memory.cpp
index d8ad194662daaa6e3d84e76511e39df0035f7b5a..0f51b89b6d2cd00ea90d8119c1f3c5d81a890dbf 100644 (file)
@@ -988,6 +988,7 @@ void * operator new[] (size_t size, wxChar * fileName, int lineNum)
 }
 #endif
 
+#if !defined(__VISAGECPP__) // already defines this by default
 void operator delete (void * buf)
 {
 #ifdef NO_DEBUG_ALLOCATION
@@ -996,6 +997,7 @@ void operator delete (void * buf)
   wxDebugFree(buf);
 #endif
 }
+#endif
 
 // VC++ 6.0
 #if defined(__VISUALC__) && (__VISUALC__ >= 1200)