summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
Diffstat (limited to 'sax')
-rw-r--r--sax/source/fastparser/fastparser.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx
index 97435e2219ea..cc7dd91b82ab 100644
--- a/sax/source/fastparser/fastparser.cxx
+++ b/sax/source/fastparser/fastparser.cxx
@@ -286,7 +286,7 @@ private:
void DefineNamespace( const OString& rPrefix, const OUString& namespaceURL );
private:
- osl::Mutex maMutex; ///< Protecting whole parseStream() execution
+ std::mutex maMutex; ///< Protecting whole parseStream() execution
::rtl::Reference< FastLocatorImpl > mxDocumentLocator;
NamespaceMap maNamespaceMap;
@@ -825,7 +825,7 @@ void FastSaxParserImpl::parseStream(const InputSource& rStructSource)
xmlInitParser();
// Only one text at one time
- MutexGuard guard( maMutex );
+ std::unique_lock guard( maMutex );
pushEntity(maData, rStructSource);
Entity& rEntity = getEntity();