Skip to content

Commit

Permalink
msvc still doesn't know thread.h???
Browse files Browse the repository at this point in the history
  • Loading branch information
abique committed Nov 30, 2023
1 parent 0eb701a commit 4e57e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin-template.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Check failure on line 13 in src/plugin-template.c

View workflow job for this annotation

GitHub Actions / windows-latest-build

threads.h: No such file or directory
#endif
Expand Down

0 comments on commit 4e57e1f

Please sign in to comment.