summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ivy/IvyStdAfx.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/Ivy/IvyStdAfx.cpp b/Ivy/IvyStdAfx.cpp
index 8da5a6e..41fc8a6 100644
--- a/Ivy/IvyStdAfx.cpp
+++ b/Ivy/IvyStdAfx.cpp
@@ -25,16 +25,3 @@ void DebugTrace ( const char *fmt , ... )
OutputDebugString( buffer );
#endif
}
-#ifdef WIN32
-#ifdef _DEBUG
-#include <crtdbg.h>
-void* __cdecl operator new(size_t nSize, const char * lpszFileName, int nLine)
- {
- return ::operator new(nSize, _NORMAL_BLOCK, lpszFileName, nLine);
- }
-void __cdecl operator delete(void *p, const char * lpszFileName, int nLine)
- {
- ::operator delete(p, _NORMAL_BLOCK, lpszFileName, nLine);
- }
-#endif
-#endif