diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-01 08:57:02 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-01 11:20:17 +0200 |
commit | ad4d09db4a359748f5ecf5e78a3513ef3878e9c1 (patch) | |
tree | 7085515b695ac84b76c59bf7471c53e0b664a1cf /package | |
parent | b3e7d61278701ffcc5330e8d65cf9e78991a1754 (diff) |
clang-tidy:readability-redundant-member-init
Change-Id: Ic5abfe2d047750d8dfd3ae8cc733fa15d34ea505
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121432
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'package')
-rw-r--r-- | package/source/xstor/owriteablestream.cxx | 1 | ||||
-rw-r--r-- | package/source/xstor/xstorage.cxx | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/package/source/xstor/owriteablestream.cxx b/package/source/xstor/owriteablestream.cxx index 89daf8ccafdb..a049a47a8030 100644 --- a/package/source/xstor/owriteablestream.cxx +++ b/package/source/xstor/owriteablestream.cxx @@ -73,7 +73,6 @@ struct WSInternalData_Impl // the mutex reference MUST NOT be empty WSInternalData_Impl( const rtl::Reference<comphelper::RefCountedMutex>& rMutexRef, sal_Int32 nStorageType ) : m_xSharedMutex( rMutexRef ) - , m_pTypeCollection() , m_aListenersContainer( rMutexRef->GetMutex() ) , m_nStorageType( nStorageType ) {} diff --git a/package/source/xstor/xstorage.cxx b/package/source/xstor/xstorage.cxx index 58524e525e85..e8153d4e79aa 100644 --- a/package/source/xstor/xstorage.cxx +++ b/package/source/xstor/xstorage.cxx @@ -92,11 +92,9 @@ struct StorInternalData_Impl StorInternalData_Impl( const rtl::Reference<comphelper::RefCountedMutex>& rMutexRef, bool bRoot, sal_Int32 nStorageType, bool bReadOnlyWrap ) : m_xSharedMutex( rMutexRef ) , m_aListenersContainer( rMutexRef->GetMutex() ) - , m_pTypeCollection() , m_bIsRoot( bRoot ) , m_nStorageType( nStorageType ) , m_bReadOnlyWrap( bReadOnlyWrap ) - , m_pSubElDispListener() {} }; |