DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 44b693de978c55b8da17c8690e3450953325ab88
parent 8e6998eb5884be9425870183b2e7bfea0f18c274
Author: falkTX <falktx@falktx.com>
Date:   Sat, 24 Sep 2022 12:38:52 +0100

Fix C++98 build

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
Mdistrho/src/xaymar-vst2/vst.h | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/distrho/src/xaymar-vst2/vst.h b/distrho/src/xaymar-vst2/vst.h @@ -45,7 +45,11 @@ #pragma pack(push, VST_ALIGNMENT) #ifdef __cplusplus +#ifdef DISTRHO_PROPER_CPP11_SUPPORT #include <cinttypes> +#else +#include <inttypes.h> +#endif extern "C" { #else #include <inttypes.h>