From 384b9198b14d8f92831bcefe060e305d6a88477b Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 6 May 2023 14:17:24 +0200 Subject: [PATCH] MSVC doesnt have cxxabi.h header Signed-off-by: falkTX --- source/utils/CarlaUtils.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/utils/CarlaUtils.hpp b/source/utils/CarlaUtils.hpp index deed7e871..90beb08f8 100644 --- a/source/utils/CarlaUtils.hpp +++ b/source/utils/CarlaUtils.hpp @@ -27,7 +27,9 @@ #include #ifdef CARLA_PROPER_CPP11_SUPPORT -# include +# ifndef _MSC_VER +# include +# endif # include #else # include