diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-10-30 11:41:05 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-30 15:33:03 +0100 |
commit | a92c62b7d6c57de6df65c35f5052d6c8e9c3e89a (patch) | |
tree | bf1c445457f620ffad5772f872e018b92e6656a3 /include | |
parent | 21cd473a97a053389e4d69b3becf994ace697c86 (diff) |
clang-tidy modernize-use-equals-default in comphelper
Change-Id: I24a3ecd2ea9fe7e08c92b95aac57a58b922616b2
Reviewed-on: https://gerrit.libreoffice.org/44054
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/sharedmutex.hxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/comphelper/sharedmutex.hxx b/include/comphelper/sharedmutex.hxx index d0fd28dd6e21..82ed7f9bef77 100644 --- a/include/comphelper/sharedmutex.hxx +++ b/include/comphelper/sharedmutex.hxx @@ -34,8 +34,6 @@ namespace comphelper { public: SharedMutex(); - SharedMutex( const SharedMutex& ); - SharedMutex& operator=( const SharedMutex& ); operator ::osl::Mutex& () { return *m_pMutexImpl; } |