]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/memory.cpp
wxStrnicmp() function is not defined under windows, so I've provided a workaround...
[wxWidgets.git] / src / common / memory.cpp
index d8ad194662daaa6e3d84e76511e39df0035f7b5a..d7d6c07461c424535979d46dfff80402a0a11910 100644 (file)
@@ -35,7 +35,7 @@
 #include "wx/app.h"
 #endif
 
-#include <wx/log.h>
+#include "wx/log.h"
 #include <stdlib.h>
 
 #include "wx/ioswrap.h"
@@ -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)