From ad4d09db4a359748f5ecf5e78a3513ef3878e9c1 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 1 Sep 2021 08:57:02 +0200 Subject: 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 --- package/source/xstor/owriteablestream.cxx | 1 - package/source/xstor/xstorage.cxx | 2 -- 2 files changed, 3 deletions(-) (limited to 'package') 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& 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& 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() {} }; -- cgit