diff options
author | David Robillard <d@drobilla.net> | 2012-01-16 22:23:42 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-01-16 22:23:42 +0000 |
commit | bcdb9db57e8f68ba90077a77a4152b72ca6da7ac (patch) | |
tree | 72e39dbd9f503827bbb74d311c22456eef918736 /sord/sord.h | |
parent | ec82c58f79e7555b4dfe9b832099aa8ee240b8ec (diff) | |
download | sord-bcdb9db57e8f68ba90077a77a4152b72ca6da7ac.tar.gz sord-bcdb9db57e8f68ba90077a77a4152b72ca6da7ac.tar.bz2 sord-bcdb9db57e8f68ba90077a77a4152b72ca6da7ac.zip |
Support compilation as C++ under MSVC++.
git-svn-id: http://svn.drobilla.net/sord/trunk@194 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'sord/sord.h')
-rw-r--r-- | sord/sord.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sord/sord.h b/sord/sord.h index b0f3017..e6f5bd8 100644 --- a/sord/sord.h +++ b/sord/sord.h @@ -21,7 +21,6 @@ #ifndef SORD_SORD_H #define SORD_SORD_H -#include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> @@ -47,6 +46,8 @@ #ifdef __cplusplus extern "C" { +#else +# include <stdbool.h> #endif /** |