diff options
author | Noel Grandin <noel@peralex.com> | 2014-07-18 11:45:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-07-18 14:24:19 +0200 |
commit | a517898052a739433759e23aada84c7d11b727a7 (patch) | |
tree | 49f8fd5094b032c12248d599aa74e5ad4cd95673 /sw/inc/ndarr.hxx | |
parent | 9aa80fcb291083dc2a396db3d1be756eb4a0e54b (diff) |
remove unnecessary "const &" qualifier from T* parameters
e.g. convert code like
foo(X * const & p)
to
foo(X * p)
since the "const &" part of it adds nothing useful.
Change-Id: Icf5f2041517259e7b6e055b75ed1e0e77c547da5
Diffstat (limited to 'sw/inc/ndarr.hxx')
-rw-r--r-- | sw/inc/ndarr.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/ndarr.hxx b/sw/inc/ndarr.hxx index a004af367379..7d65a951592b 100644 --- a/sw/inc/ndarr.hxx +++ b/sw/inc/ndarr.hxx @@ -80,7 +80,7 @@ struct CompareSwOutlineNodes class SwOutlineNodes : public o3tl::sorted_vector<SwNode*, CompareSwOutlineNodes> { public: - bool Seek_Entry(SwNode* const &rP, sal_uInt16* pnPos) const; + bool Seek_Entry(SwNode* rP, sal_uInt16* pnPos) const; }; class SW_DLLPUBLIC SwNodes |