From 32deedb71c819bd1b9ac6de4a5cd22486cd4e160 Mon Sep 17 00:00:00 2001 From: cxl Date: Wed, 30 Mar 2016 10:02:04 +0000 Subject: [PATCH] UPP allocator now enabled in mingw git-svn-id: svn://ultimatepp.org/upp/trunk@9657 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/Defs.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/uppsrc/Core/Defs.h b/uppsrc/Core/Defs.h index 72ad5019f..a573c1c16 100644 --- a/uppsrc/Core/Defs.h +++ b/uppsrc/Core/Defs.h @@ -477,12 +477,6 @@ template<> inline bool IsNull(const int64& i) { return i == INT64_NULL; } template<> inline bool IsNull(const double& r) { return r < DOUBLE_NULL_LIM; } template<> inline bool IsNull(const bool& r ) { return false; } -#if defined(flagMT) - #if defined(PLATFORM_WIN32) && defined(COMPILER_GCC) - #define flagUSEMALLOC //MINGW does not support - #endif -#endif - #ifndef flagUSEMALLOC #define UPP_HEAP #endif