diff options
author | David Robillard <d@drobilla.net> | 2012-08-03 16:43:57 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-03 16:43:57 +0000 |
commit | 769d980f5ef68b84b8a4fe016eccced4d3b06b49 (patch) | |
tree | e697e4aa125a1fbfae858f5ae681721305cb8ae4 /suil/suil.h | |
parent | 6d856f2c3207fd5acd513d41f72830c29daf07f2 (diff) | |
download | suil-769d980f5ef68b84b8a4fe016eccced4d3b06b49.tar.gz suil-769d980f5ef68b84b8a4fe016eccced4d3b06b49.tar.bz2 suil-769d980f5ef68b84b8a4fe016eccced4d3b06b49.zip |
Fix compilation with MSVC.
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@4609 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'suil/suil.h')
-rw-r--r-- | suil/suil.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/suil/suil.h b/suil/suil.h index ae228c4..b9adbef 100644 --- a/suil/suil.h +++ b/suil/suil.h @@ -21,7 +21,6 @@ #ifndef SUIL_SUIL_H #define SUIL_SUIL_H -#include <stdbool.h> #include <stdint.h> #include "lv2/lv2plug.in/ns/lv2core/lv2.h" @@ -45,6 +44,8 @@ #ifdef __cplusplus extern "C" { +#else +# include <stdbool.h> #endif /** |