Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Common/NewHandler.cpp')
-rwxr-xr-xCommon/NewHandler.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Common/NewHandler.cpp b/Common/NewHandler.cpp
index 9994297c..094eb642 100755
--- a/Common/NewHandler.cpp
+++ b/Common/NewHandler.cpp
@@ -10,6 +10,7 @@
#ifndef DEBUG_MEMORY_LEAK
+#ifdef _WIN32
void *
#ifdef _MSC_VER
__cdecl
@@ -36,6 +37,7 @@ operator delete(void *p) throw()
*/
::free(p);
}
+#endif
#else