summaryrefslogtreecommitdiffstats
path: root/src/JackDriver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/JackDriver.hpp')
-rw-r--r--src/JackDriver.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/JackDriver.hpp b/src/JackDriver.hpp
index 01185b2..abf9008 100644
--- a/src/JackDriver.hpp
+++ b/src/JackDriver.hpp
@@ -18,12 +18,12 @@
#define PATCHAGE_JACKDRIVER_HPP
#include "Driver.hpp"
-#include "Queue.hpp"
#include <glibmm/thread.h>
#include <jack/jack.h>
#include <mutex>
+#include <queue>
#include <string>
class ILog;
@@ -122,7 +122,7 @@ private:
ILog& _log;
jack_client_t* _client;
- Queue<PatchageEvent> _events;
+ std::queue<PatchageEvent> _events;
std::mutex _shutdown_mutex;