From f314f89aefbcef6bc56a03cc6b5be5f9640bae14 Mon Sep 17 00:00:00 2001 From: VA-GS Date: Thu, 3 Oct 2024 09:00:51 +0200 Subject: [PATCH] When building without exceptions with MSVC, malloc.h is required for alloca --- serialize.h | 1 + 1 file changed, 1 insertion(+) diff --git a/serialize.h b/serialize.h index 147c605..7266b29 100644 --- a/serialize.h +++ b/serialize.h @@ -104,6 +104,7 @@ #ifdef _MSC_VER #pragma warning( disable : 4127 ) #pragma warning( disable : 4244 ) +#include #endif // #ifdef _MSC_VER #include