summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/LinkLocal/DNSSD/Bonjour/BonjourQuery.h')
-rw-r--r--Swiften/LinkLocal/DNSSD/Bonjour/BonjourQuery.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/Swiften/LinkLocal/DNSSD/Bonjour/BonjourQuery.h b/Swiften/LinkLocal/DNSSD/Bonjour/BonjourQuery.h
index 5520158..d3cebe4 100644
--- a/Swiften/LinkLocal/DNSSD/Bonjour/BonjourQuery.h
+++ b/Swiften/LinkLocal/DNSSD/Bonjour/BonjourQuery.h
@@ -7,8 +7,7 @@
#pragma once
#include <memory>
-
-#include <boost/thread/mutex.hpp>
+#include <mutex>
#include <dns_sd.h>
@@ -35,7 +34,7 @@ namespace Swift {
protected:
EventLoop* eventLoop;
std::shared_ptr<BonjourQuerier> querier;
- mutable boost::mutex sdRefMutex;
+ mutable std::mutex sdRefMutex;
DNSServiceRef sdRef;
};
}