From 4e57e1f4c07500f40cb5c146b75987382884fc8d Mon Sep 17 00:00:00 2001 From: Alexandre Bique Date: Thu, 30 Nov 2023 14:15:58 +0100 Subject: [PATCH] msvc still doesn't know thread.h??? --- src/plugin-template.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin-template.c b/src/plugin-template.c index b04f18a4..de9620b2 100644 --- a/src/plugin-template.c +++ b/src/plugin-template.c @@ -8,7 +8,7 @@ #include #include -#if __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_THREADS__) +#if __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_THREADS__) && !defined(_MSC_VER) # define CLAP_HAS_THREAD # include #endif