summaryrefslogtreecommitdiffstats
path: root/binaryurp/source/outgoingrequests.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'binaryurp/source/outgoingrequests.hxx')
-rw-r--r--binaryurp/source/outgoingrequests.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/binaryurp/source/outgoingrequests.hxx b/binaryurp/source/outgoingrequests.hxx
index 294119693d02..698b6db9e417 100644
--- a/binaryurp/source/outgoingrequests.hxx
+++ b/binaryurp/source/outgoingrequests.hxx
@@ -22,10 +22,9 @@
#include <sal/config.h>
#include <map>
+#include <mutex>
#include <vector>
-#include <osl/mutex.hxx>
-
namespace binaryurp
{
struct OutgoingRequest;
@@ -56,7 +55,7 @@ private:
typedef std::map<rtl::ByteSequence, std::vector<OutgoingRequest>> Map;
- osl::Mutex mutex_;
+ std::mutex mutex_;
Map map_;
};
}