summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-12-15 11:19:39 (GMT)
committerGitHub <noreply@github.com>2016-12-15 11:19:39 (GMT)
commit86a6be658bc0144fec0f6682318c6670821ecb25 (patch)
tree902c0cf17971e7e8233c3aa830325af1ecb06658
parente7747902e509cdbf895af3a7bc2025fe8193e3f7 (diff)
parentca52d7842222619c82683ad235a63db6af9779d3 (diff)
downloaduscxml-86a6be658bc0144fec0f6682318c6670821ecb25.zip
uscxml-86a6be658bc0144fec0f6682318c6670821ecb25.tar.gz
uscxml-86a6be658bc0144fec0f6682318c6670821ecb25.tar.bz2
Merge pull request #99 from gabm/FixCompilationGCC6
Problem: cannot compile under ArchLinux gcc6
-rw-r--r--src/uscxml/debug/DebugSession.h1
-rw-r--r--src/uscxml/util/URL.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/uscxml/debug/DebugSession.h b/src/uscxml/debug/DebugSession.h
index c5ed7e5..9224163 100644
--- a/src/uscxml/debug/DebugSession.h
+++ b/src/uscxml/debug/DebugSession.h
@@ -28,6 +28,7 @@
#include <set>
#include <thread>
#include <condition_variable>
+#include <mutex>
namespace uscxml {
diff --git a/src/uscxml/util/URL.h b/src/uscxml/util/URL.h
index b3f486a..c83e3b1 100644
--- a/src/uscxml/util/URL.h
+++ b/src/uscxml/util/URL.h
@@ -30,7 +30,7 @@
#include <list>
#include <thread>
#include <condition_variable>
-
+#include <mutex>
namespace uscxml {
class URL;