diff options
Diffstat (limited to 'sc/inc/document.hxx')
-rw-r--r-- | sc/inc/document.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index 2d3d66b8a8bb..07f488df346d 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -47,6 +47,7 @@ #include <cassert> #include <memory> #include <map> +#include <mutex> #include <optional> #include <set> #include <unordered_map> @@ -469,7 +470,7 @@ private: mutable ScInterpreterContext maInterpreterContext; - osl::Mutex mScLookupMutex; // protection for thread-unsafe parts of handling ScLookup + std::mutex mScLookupMutex; // protection for thread-unsafe parts of handling ScLookup static const sal_uInt16 nSrcVer; // file version (load/save) sal_uInt16 nFormulaTrackCount; |