summaryrefslogtreecommitdiff
path: root/store
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-09-02 09:16:09 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-09-02 13:05:05 +0200
commitb1af7083b469eec48783b7a1aaff6d080901fc7f (patch)
tree5d81585ed67232a1884ffc7146a2401c3c965c19 /store
parenta8638dc41540e00c341a82c83e5a11fae5f74c20 (diff)
clang-tidy:readability-redundant-member-init
Change-Id: I39b9ac81d65f4a269293824642c1b2ec593c0584 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121490 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'store')
-rw-r--r--store/source/lockbyte.cxx4
-rw-r--r--store/source/stordir.cxx3
-rw-r--r--store/source/storlckb.cxx4
3 files changed, 4 insertions, 7 deletions
diff --git a/store/source/lockbyte.cxx b/store/source/lockbyte.cxx
index 91de98023c48..4a163fff6c9f 100644
--- a/store/source/lockbyte.cxx
+++ b/store/source/lockbyte.cxx
@@ -322,7 +322,7 @@ protected:
} // namespace store
FileLockBytes::FileLockBytes (FileHandle const & rFile)
- : m_hFile (rFile.m_handle), m_nSize (SAL_MAX_UINT32), m_xAllocator()
+ : m_hFile (rFile.m_handle), m_nSize (SAL_MAX_UINT32)
{
}
@@ -695,7 +695,7 @@ protected:
} // namespace store
MemoryLockBytes::MemoryLockBytes()
- : m_pData (nullptr), m_nSize (0), m_xAllocator()
+ : m_pData (nullptr), m_nSize (0)
{}
MemoryLockBytes::~MemoryLockBytes()
diff --git a/store/source/stordir.cxx b/store/source/stordir.cxx
index 80cb2efc501c..9ebdc7693df3 100644
--- a/store/source/stordir.cxx
+++ b/store/source/stordir.cxx
@@ -69,8 +69,7 @@ const sal_uInt32 OStoreDirectory_Impl::m_nTypeId(0x89191107);
* OStoreDirectory_Impl.
*/
OStoreDirectory_Impl::OStoreDirectory_Impl()
- : m_xManager (),
- m_aDescr (0, 0, 0),
+ : m_aDescr (0, 0, 0),
m_nPath (0),
m_hTextCvt (nullptr)
{}
diff --git a/store/source/storlckb.cxx b/store/source/storlckb.cxx
index 1aaf2cbc0a77..09c4f73136c8 100644
--- a/store/source/storlckb.cxx
+++ b/store/source/storlckb.cxx
@@ -43,9 +43,7 @@ const sal_uInt32 OStoreLockBytes::m_nTypeId(0x94190310);
* OStoreLockBytes.
*/
OStoreLockBytes::OStoreLockBytes()
- : m_xManager (),
- m_xNode (),
- m_bWriteable (false)
+ : m_bWriteable (false)
{
}