diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-07-18 18:49:01 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-20 19:23:49 +0200 |
commit | a4a023f7f441d2d6281d06ec6293c583ebea4ab0 (patch) | |
tree | 561543d8eff466df97d8a08c9103dba3ba2f6919 /package/inc | |
parent | 2ebde17fec5fa991bd211c56ca93b7e528eea5b8 (diff) |
osl::Mutex->std::mutex in ByteGrabber
Change-Id: I96ea49da6708041ac19e147f192c7e996d44b8ec
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119276
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'package/inc')
-rw-r--r-- | package/inc/ByteGrabber.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/inc/ByteGrabber.hxx b/package/inc/ByteGrabber.hxx index 27d01deb1ca9..2ccacc1705f1 100644 --- a/package/inc/ByteGrabber.hxx +++ b/package/inc/ByteGrabber.hxx @@ -27,14 +27,14 @@ #include <com/sun/star/uno/RuntimeException.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp> -#include <osl/mutex.hxx> +#include <mutex> namespace com::sun::star { namespace io { class XSeekable; class XInputStream; } } class ByteGrabber final { - ::osl::Mutex m_aMutex; + std::mutex m_aMutex; css::uno::Reference < css::io::XInputStream > xStream; css::uno::Reference < css::io::XSeekable > xSeek; |