From b09deb075319c1c19f91e3a6f64429b61682ebf8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 28 Jul 2017 11:47:51 +0200 Subject: loplugin:constparams handle constructors had to change the structure of the plugin considerably, was too messy to structure it to do the calculations on a per-function basis Change-Id: I4edee7735f726101105c607368124a08dba21086 Reviewed-on: https://gerrit.libreoffice.org/40516 Tested-by: Jenkins Reviewed-by: Noel Grandin --- store/source/lockbyte.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'store') diff --git a/store/source/lockbyte.cxx b/store/source/lockbyte.cxx index 581a515c2c3b..e4fc18071e0b 100644 --- a/store/source/lockbyte.cxx +++ b/store/source/lockbyte.cxx @@ -306,7 +306,7 @@ class FileLockBytes : public: /** Construction. */ - explicit FileLockBytes (FileHandle & rFile); + explicit FileLockBytes (FileHandle const & rFile); FileLockBytes(const FileLockBytes&) = delete; FileLockBytes& operator=(const FileLockBytes&) = delete; @@ -319,7 +319,7 @@ protected: } // namespace store -FileLockBytes::FileLockBytes (FileHandle & rFile) +FileLockBytes::FileLockBytes (FileHandle const & rFile) : m_hFile (rFile.m_handle), m_nSize (SAL_MAX_UINT32), m_xAllocator() { } @@ -534,7 +534,7 @@ class MappedLockBytes : public: /** Construction. */ - explicit MappedLockBytes (FileMapping & rMapping); + explicit MappedLockBytes (FileMapping const & rMapping); MappedLockBytes(const MappedLockBytes&) = delete; MappedLockBytes& operator=(const MappedLockBytes&) = delete; @@ -547,7 +547,7 @@ protected: } // namespace store -MappedLockBytes::MappedLockBytes (FileMapping & rMapping) +MappedLockBytes::MappedLockBytes (FileMapping const & rMapping) : m_pData (rMapping.m_pAddr), m_nSize (rMapping.m_nSize), m_nPageSize(0), m_hFile (rMapping.m_hFile) { } -- cgit