summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/EventLoop/SingleThreadedEventLoop.h')
-rw-r--r--Swiften/EventLoop/SingleThreadedEventLoop.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/Swiften/EventLoop/SingleThreadedEventLoop.h b/Swiften/EventLoop/SingleThreadedEventLoop.h
index eb897bf..9f8cb0a 100644
--- a/Swiften/EventLoop/SingleThreadedEventLoop.h
+++ b/Swiften/EventLoop/SingleThreadedEventLoop.h
@@ -12,11 +12,10 @@
#pragma once
+#include <condition_variable>
+#include <mutex>
#include <vector>
-#include <boost/thread/condition_variable.hpp>
-#include <boost/thread/mutex.hpp>
-
#include <Swiften/EventLoop/EventLoop.h>
// DESCRIPTION:
@@ -61,7 +60,7 @@ namespace Swift {
bool shouldShutDown_;
bool eventAvailable_;
- boost::mutex eventAvailableMutex_;
- boost::condition_variable eventAvailableCondition_;
+ std::mutex eventAvailableMutex_;
+ std::condition_variable eventAvailableCondition_;
};
}