diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-07-18 14:25:02 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-18 20:46:47 +0200 |
commit | 4ab57949a2cbaacba33375ea33dc896205eac6c9 (patch) | |
tree | 5b2379d9e8baf4aa5d88c576bcad123b61d5335f /bridges/inc | |
parent | 6db41dd2649a9ddaf32fc779bed07dc7d61c1154 (diff) |
osl::Mutex->std::mutex in VtableFactory
Change-Id: Ie973ef2923c1c725ee740000ebd1eacf671a5bfb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119139
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'bridges/inc')
-rw-r--r-- | bridges/inc/vtablefactory.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridges/inc/vtablefactory.hxx b/bridges/inc/vtablefactory.hxx index c169f7c0bfd0..9afcb837099d 100644 --- a/bridges/inc/vtablefactory.hxx +++ b/bridges/inc/vtablefactory.hxx @@ -19,13 +19,13 @@ #pragma once -#include <osl/mutex.hxx> #include <rtl/alloc.h> #include <rtl/ustring.hxx> #include <sal/types.h> #include <typelib/typedescription.hxx> #include <memory> +#include <mutex> #include <unordered_map> /*See: http://people.redhat.com/drepper/selinux-mem.html*/ @@ -210,7 +210,7 @@ private: typedef std::unordered_map< OUString, Vtables > Map; - osl::Mutex m_mutex; + std::mutex m_mutex; Map m_map; rtl_arena_type * m_arena; |