UPP allocator now enabled in mingw

git-svn-id: svn://ultimatepp.org/upp/trunk@9657 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2016-03-30 10:02:04 +00:00
parent 15091acd69
commit 32deedb71c

View file

@ -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