From cac4596a66e9b83dcf3aec2589d05ff79d49a659 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 7 Jul 2018 14:37:57 -0500 Subject: [PATCH] [ox/std] Change how alloca determines which implementation to use (synced from 7b9c7ddde4f751213e498e1784728634cc9c9560) --- src/ox/std/new.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ox/std/new.hpp b/src/ox/std/new.hpp index 5dd415408..c242f4da4 100644 --- a/src/ox/std/new.hpp +++ b/src/ox/std/new.hpp @@ -15,7 +15,7 @@ #if defined(_MSC_VER) #include #define ox_alloca(size) _alloca(size) -#elif __has_include() +#elif OX_USE_STDLIB #include #define ox_alloca(size) alloca(size) #else