summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/xmlsec/nss/digestcontext.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlsecurity/source/xmlsec/nss/digestcontext.hxx')
-rw-r--r--xmlsecurity/source/xmlsec/nss/digestcontext.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlsecurity/source/xmlsec/nss/digestcontext.hxx b/xmlsecurity/source/xmlsec/nss/digestcontext.hxx
index 91326daca395..72e1864851fc 100644
--- a/xmlsecurity/source/xmlsec/nss/digestcontext.hxx
+++ b/xmlsecurity/source/xmlsec/nss/digestcontext.hxx
@@ -22,13 +22,13 @@
#include <com/sun/star/xml/crypto/XDigestContext.hpp>
#include <cppuhelper/implbase.hxx>
-#include <osl/mutex.hxx>
+#include <mutex>
#include <secmodt.h>
class ODigestContext : public cppu::WeakImplHelper< css::xml::crypto::XDigestContext >
{
private:
- ::osl::Mutex m_aMutex;
+ std::mutex m_aMutex;
PK11Context* m_pContext;
sal_Int32 const m_nDigestLength;