summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Network/BoostIOServiceThread.h')
-rw-r--r--Swiften/Network/BoostIOServiceThread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/Network/BoostIOServiceThread.h b/Swiften/Network/BoostIOServiceThread.h
index 18d5a5b..b9183fd 100644
--- a/Swiften/Network/BoostIOServiceThread.h
+++ b/Swiften/Network/BoostIOServiceThread.h
@@ -7,9 +7,9 @@
#pragma once
#include <memory>
+#include <thread>
#include <boost/asio/io_service.hpp>
-#include <boost/thread/thread.hpp>
#include <Swiften/Base/API.h>
@@ -36,6 +36,6 @@ namespace Swift {
private:
std::shared_ptr<boost::asio::io_service> ioService_;
- boost::thread* thread_;
+ std::thread* thread_;
};
}