diff options
Diffstat (limited to 'include/unotools/streamhelper.hxx')
-rw-r--r-- | include/unotools/streamhelper.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/unotools/streamhelper.hxx b/include/unotools/streamhelper.hxx index 26c7aa37c2da..5d0a3792855b 100644 --- a/include/unotools/streamhelper.hxx +++ b/include/unotools/streamhelper.hxx @@ -57,6 +57,9 @@ public: virtual void SAL_CALL seek( sal_Int64 location ) override; virtual sal_Int64 SAL_CALL getPosition( ) override; virtual sal_Int64 SAL_CALL getLength( ) override; + + // workaround for Ubuntu 18.04 / Fedora 31 (Coverity VM) build with std::mutex; must not be inline! + virtual void SAL_CALL acquire() SAL_NOEXCEPT override; }; } // namespace utl |