From 106a8575205d6f0d772be64fd3880576146c8b1f Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 19 Nov 2022 22:26:08 +0000 Subject: [PATCH] DPF Mutex implementation is TODO on MSVC Signed-off-by: falkTX --- distrho/extra/Mutex.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/distrho/extra/Mutex.hpp b/distrho/extra/Mutex.hpp index 91910d69..e224ea55 100644 --- a/distrho/extra/Mutex.hpp +++ b/distrho/extra/Mutex.hpp @@ -28,7 +28,12 @@ #endif // FIXME make Mutex stop relying on pthread +#ifdef _MSC_VER +#define DISTRHO_OS_WINDOWS__TODO +#warning DPF Mutex implementation is TODO on MSVC +#else #include +#endif START_NAMESPACE_DISTRHO