diff options
author | Arnaud Versini <arnaud.versini@libreoffice.org> | 2021-07-18 10:11:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-18 11:37:21 +0200 |
commit | 3785f97ec18feba9c5508559e5aed6d25cfc3aed (patch) | |
tree | c43c0149911efecad16ea4ee8c62db35d5c21c68 /binaryurp/source/outgoingrequests.hxx | |
parent | e0ba91b7e8a2f0d949677db1708bb0e6d8534389 (diff) |
binaryurp : use std::mutex in outgoingrequests
Change-Id: Ib0670af4596c5a40da27138d62b78df69bb77b9a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119121
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'binaryurp/source/outgoingrequests.hxx')
-rw-r--r-- | binaryurp/source/outgoingrequests.hxx | 5 |
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_; }; } |