summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-12-29 18:49:56 +0100
committerRobin Gareus <robin@gareus.org>2015-12-29 18:49:56 +0100
commit80a730550d71738020ca05711ac1463145c38576 (patch)
tree634671e5b412b52cc28c0ec9f430edbf2cd2d50e
parent80e170d7fd0da39d109b5ad4bd8dd54069592336 (diff)
clang build fix (uint32_t is not declaed)
-rw-r--r--libs/pbd/pbd/event_loop.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/pbd/pbd/event_loop.h b/libs/pbd/pbd/event_loop.h
index 90184c7c06..f4f57f4c28 100644
--- a/libs/pbd/pbd/event_loop.h
+++ b/libs/pbd/pbd/event_loop.h
@@ -25,6 +25,7 @@
#include <map>
#include <boost/function.hpp>
#include <boost/bind.hpp> /* we don't need this here, but anything calling call_slot() probably will, so this is convenient */
+#include <stdint.h>
#include <pthread.h>
#include <glibmm/threads.h>