diff options
Diffstat (limited to 'cppuhelper/source/servicemanager.hxx')
-rw-r--r-- | cppuhelper/source/servicemanager.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/source/servicemanager.hxx b/cppuhelper/source/servicemanager.hxx index 2228cd1fbbf1..b47d188ca82b 100644 --- a/cppuhelper/source/servicemanager.hxx +++ b/cppuhelper/source/servicemanager.hxx @@ -14,6 +14,7 @@ #include <cassert> #include <unordered_map> #include <memory> +#include <mutex> #include <string_view> #include <vector> @@ -29,7 +30,6 @@ #include <com/sun/star/uno/Reference.hxx> #include <cppuhelper/basemutex.hxx> #include <cppuhelper/compbase.hxx> -#include <osl/mutex.hxx> #include <rtl/ustring.hxx> namespace com::sun::star::lang { @@ -146,7 +146,7 @@ public: css::uno::Reference< css::lang::XComponent > component; Status status; - osl::Mutex mutex; + std::mutex mutex; css::uno::Reference<css::uno::XInterface> singleInstance; css::uno::Reference< css::lang::XComponent > disposeInstance; bool dispose; |