From 43e6ae583655f1bbf1fc8b9dcde2e322ea489323 Mon Sep 17 00:00:00 2001 From: Claes Johanson Date: Sun, 7 Oct 2018 21:17:16 +0200 Subject: [PATCH] Fix build on windows --- src/common/SurgeStorage.h | 4 +++- src/common/SurgeSynthesizerIO.cpp | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/common/SurgeStorage.h b/src/common/SurgeStorage.h index 012231aeec4..5941edd0dff 100644 --- a/src/common/SurgeStorage.h +++ b/src/common/SurgeStorage.h @@ -19,8 +19,10 @@ using namespace std; #if __linux #include -#else +#elif __APPLE__ #include +#else +#include #endif #include diff --git a/src/common/SurgeSynthesizerIO.cpp b/src/common/SurgeSynthesizerIO.cpp index de47a68594f..ad36ae7c54a 100644 --- a/src/common/SurgeSynthesizerIO.cpp +++ b/src/common/SurgeSynthesizerIO.cpp @@ -7,8 +7,10 @@ #include #ifdef __linux__ #include -#else +#elif __APPLE__ #include +#else +#include #endif #include #include