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 /comphelper | |
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 'comphelper')
-rw-r--r-- | comphelper/source/misc/sharedmutex.cxx | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/comphelper/source/misc/sharedmutex.cxx b/comphelper/source/misc/sharedmutex.cxx index e53e2700d76f..176c8acaa7f2 100644 --- a/comphelper/source/misc/sharedmutex.cxx +++ b/comphelper/source/misc/sharedmutex.cxx @@ -31,19 +31,6 @@ namespace comphelper } - SharedMutex::SharedMutex( const SharedMutex& _rhs ) - :m_pMutexImpl() - { - *this = _rhs; - } - - - SharedMutex& SharedMutex::operator=( const SharedMutex& _rhs ) - { - m_pMutexImpl = _rhs.m_pMutexImpl; - return *this; - } - RefCountedMutex::~RefCountedMutex() { } |