]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/memory.cpp
vsprintf() is ANSI so there is normally no need to test for it
[wxWidgets.git] / src / common / memory.cpp
index 37bf42aa41c54528d2358a5fe2c045eb146e42df..8f9b0d0ac3d9355974ea2966e008d993303ee124 100644 (file)
@@ -951,6 +951,25 @@ void * operator new (size_t size, char * fileName, int lineNum)
 #endif
 }
 
+// Added JACS 25/11/98
+void * operator new (size_t size)
+{
+#ifdef NO_DEBUG_ALLOCATION
+  return malloc(size);
+#else
+  return wxDebugAlloc(size, NULL, 0, FALSE);
+#endif
+}
+
+void * operator new[] (size_t size)
+{
+#ifdef NO_DEBUG_ALLOCATION
+  return malloc(size);
+#else
+  return wxDebugAlloc(size, NULL, 0, FALSE, TRUE);
+#endif
+}
+
 #if !( defined (_MSC_VER) && (_MSC_VER <= 1020) )
 void * operator new[] (size_t size, char * fileName, int lineNum)
 {