]> git.saurik.com Git - wxWidgets.git/commitdiff
Applied compilation fix for memory.cpp.
authorRobert Roebling <robert@roebling.de>
Sun, 6 Feb 2005 12:42:34 +0000 (12:42 +0000)
committerRobert Roebling <robert@roebling.de>
Sun, 6 Feb 2005 12:42:34 +0000 (12:42 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31785 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/memory.cpp

index 9e6c3beaed7b98fce4c235b808c75e9f1f0a2e64..a6a4a32d50488188dc45ce1f198f57159455eeaa 100644 (file)
@@ -917,6 +917,8 @@ static MemoryCriticalSection memLocker;
 
 #endif
 
+#ifdef __WXDEBUG__
+#if wxUSE_GLOBAL_MEMORY_OPERATORS
 void * operator new (size_t size, wxChar * fileName, int lineNum)
 {
     return wxDebugAlloc(size, fileName, lineNum, false, false);
@@ -1059,6 +1061,9 @@ void wxDebugFree(void * buf, bool WXUNUSED(isVect) )
     free((char *)st);
 }
 
+#endif // wxUSE_GLOBAL_MEMORY_OPERATORS
+#endif // __WXDEBUG__
+
 // Trace: send output to the current debugging stream
 void wxTrace(const wxChar * ...)
 {