diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-07 08:35:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-11 08:25:33 +0200 |
commit | 9d307abeec2a80e59af0f0af10dc42d90cd7441a (patch) | |
tree | ab939f6c7d0d65d0419fbe305bbc1501f1faceb8 /i18npool | |
parent | 12fb9096f562281c7ca4b7fed6a3342dac9a91b7 (diff) |
new loplugin: defaultparams
find places where we do not need to be passing a parameter to a
function, because that function has a default value which matches the
value we are passing.
Change-Id: I04d1fd6275204dd4925e6563282464f461123632
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/breakiterator/gendict.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/source/breakiterator/gendict.cxx b/i18npool/source/breakiterator/gendict.cxx index 3e649dd964fb..493d0531a00e 100644 --- a/i18npool/source/breakiterator/gendict.cxx +++ b/i18npool/source/breakiterator/gendict.cxx @@ -126,7 +126,7 @@ static inline void printDataArea(FILE *dictionary_fp, FILE *source_fp, vector<sa const sal_Int32 len = Ostr.getLength(); sal_Int32 i=0; - Ostr.iterateCodePoints(&i, 1); + Ostr.iterateCodePoints(&i); if (len == i) continue; // skip one character word |