commit 4e57e1f4c07500f40cb5c146b75987382884fc8d parent 0eb701a9f2b15ddc9eab7866bc07e65ac5ae1fcf Author: Alexandre Bique <bique.alexandre@gmail.com> Date: Thu, 30 Nov 2023 14:15:31 +0100 msvc still doesn't know thread.h??? Diffstat:
M | src/plugin-template.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/plugin-template.c b/src/plugin-template.c @@ -8,7 +8,7 @@ #include <stdio.h> #include <assert.h> -#if __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_THREADS__) +#if __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_THREADS__) && !defined(_MSC_VER) # define CLAP_HAS_THREAD # include <threads.h> #endif