From cfa826070c725d8fa878fe06d9b30840e3328c2c Mon Sep 17 00:00:00 2001 From: Xaymar Date: Fri, 8 Aug 2025 04:09:52 +0200 Subject: [PATCH] 'cinttypes' doesn't exist prior to C++11 --- vst.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vst.h b/vst.h index 9893e58..33631ef 100644 --- a/vst.h +++ b/vst.h @@ -33,7 +33,11 @@ #pragma pack(push, 8) #ifdef __cplusplus +#if __cplusplus < 201103L +#include +#else #include +#endif extern "C" { #else #include