Kaydet (Commit) a92c62b7 authored tarafından Jochen Nitschke's avatar Jochen Nitschke Kaydeden (comit) Noel Grandin

clang-tidy modernize-use-equals-default in comphelper

Change-Id: I24a3ecd2ea9fe7e08c92b95aac57a58b922616b2
Reviewed-on: https://gerrit.libreoffice.org/44054Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 21cd473a
......@@ -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()
{
}
......
......@@ -34,8 +34,6 @@ namespace comphelper
{
public:
SharedMutex();
SharedMutex( const SharedMutex& );
SharedMutex& operator=( const SharedMutex& );
operator ::osl::Mutex& () { return *m_pMutexImpl; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment