Core/MemoryHelper: Oops

This commit is contained in:
Jérôme Leclercq 2018-01-05 15:41:30 +01:00
parent 1e53274623
commit eb9bc18b45
1 changed files with 0 additions and 1 deletions

View File

@ -18,7 +18,6 @@
#elif defined(NAZARA_COMPILER_CLANG) || defined(NAZARA_COMPILER_GCC) || defined(NAZARA_COMPILER_INTEL)
#include <alloca.h>
#define NAZARA_ALLOCA(size) alloca(size)
// with Clang/GCC, using alloca with a size of zero does nothing good
#define NAZARA_ALLOCA(size) alloca(((size) > 0) ? (size) : 1)
#define NAZARA_ALLOCA_SUPPORT