diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-07-05 15:05:10 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-07-05 15:05:10 +0200 |
commit | 0c4d4f268f6db843419f65f9809b395352867380 (patch) | |
tree | 6f8e0be7ed96f3ca532b30c84f0ec947169d1426 /l10ntools | |
parent | 5ef30c205e61cfe84d701dd510dddd25d0465f62 (diff) |
loplugin:unnecessaryparen
Change-Id: I38f1462c97c6a8fc5777f0db4555c11d8201b49b
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/lngmerge.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/lngmerge.cxx b/l10ntools/source/lngmerge.cxx index 0537dd8ebb44..b412f882e914 100644 --- a/l10ntools/source/lngmerge.cxx +++ b/l10ntools/source/lngmerge.cxx @@ -220,7 +220,7 @@ bool LngParser::Merge( sSearch += sLang; sSearch += ";"; - if (( sLanguagesDone.indexOf( sSearch ) != -1 )) { + if ( sLanguagesDone.indexOf( sSearch ) != -1 ) { LngLineList::iterator it = pLines->begin(); std::advance( it, nPos ); pLines->erase( it ); |