aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/atom
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-01-09 20:23:19 +0100
committerDavid Robillard <d@drobilla.net>2019-01-10 22:09:30 +0100
commit677eee0a8a1ca270860c11bc411abb48ae5e455e (patch)
tree6c9df76c7628a7e6bea9b21f886bdb988ac4981b /lv2/atom
parentca215abd628edda2df021ba8ab67854d2f68d7cb (diff)
downloadlv2-677eee0a8a1ca270860c11bc411abb48ae5e455e.tar.xz
Remove workaround for ancient MSVC
Diffstat (limited to 'lv2/atom')
-rw-r--r--lv2/atom/forge.h3
-rw-r--r--lv2/atom/util.h3
2 files changed, 2 insertions, 4 deletions
diff --git a/lv2/atom/forge.h b/lv2/atom/forge.h
index 826b2d1..50e962b 100644
--- a/lv2/atom/forge.h
+++ b/lv2/atom/forge.h
@@ -49,6 +49,7 @@
#define LV2_ATOM_FORGE_H
#include <assert.h>
+#include <stdbool.h>
#include "lv2/atom/atom.h"
#include "lv2/atom/util.h"
@@ -57,8 +58,6 @@
#ifdef __cplusplus
extern "C" {
-#else
-# include <stdbool.h>
#endif
// Disable deprecation warnings for Blank and Resource
diff --git a/lv2/atom/util.h b/lv2/atom/util.h
index b507180..5151f84 100644
--- a/lv2/atom/util.h
+++ b/lv2/atom/util.h
@@ -32,6 +32,7 @@
#define LV2_ATOM_UTIL_H
#include <stdarg.h>
+#include <stdbool.h>
#include <stdint.h>
#include <string.h>
@@ -39,8 +40,6 @@
#ifdef __cplusplus
extern "C" {
-#else
-# include <stdbool.h>
#endif
/** Pad a size to 64 bits. */