summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-08-23 09:23:20 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-08-23 10:37:31 +0200
commit5e01bae7f4a6f81ff70f328d0289dae37fab01eb (patch)
treecc126a1dbc37037cda74405e89e059f1cadc2fcf /sax
parent205eb935c286f52870d7ffd9b2d8b75c2d6bc57f (diff)
loplugin:returnconstval in sax
Change-Id: Icf5c337164b71aab10dd960815eee516822c276c Reviewed-on: https://gerrit.libreoffice.org/77990 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sax')
-rw-r--r--sax/source/tools/fastattribs.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sax/source/tools/fastattribs.cxx b/sax/source/tools/fastattribs.cxx
index 6175c7873882..8aff8569d903 100644
--- a/sax/source/tools/fastattribs.cxx
+++ b/sax/source/tools/fastattribs.cxx
@@ -253,7 +253,7 @@ Sequence< FastAttribute > FastAttributeList::getFastAttributes( )
return aSeq;
}
-const FastAttributeList::FastAttributeIter FastAttributeList::find( sal_Int32 nToken ) const
+FastAttributeList::FastAttributeIter FastAttributeList::find( sal_Int32 nToken ) const
{
for (size_t i = 0; i < maAttributeTokens.size(); ++i)
if( maAttributeTokens[i] == nToken )