From 25548c57eedcb40f8f9b3e3d6707311cfe0b2a35 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sat, 18 Oct 2014 13:01:49 +0200 Subject: cppcheck: Prefer prefix ++/-- operators for non-primitive types Change-Id: I0dd2f1d2efef7995aaf2ab7656c24178a02eb9cd --- svgio/source/svgreader/svgtoken.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svgio') diff --git a/svgio/source/svgreader/svgtoken.cxx b/svgio/source/svgreader/svgtoken.cxx index 0e3793f7c7f4..fa5d7ba44bca 100644 --- a/svgio/source/svgreader/svgtoken.cxx +++ b/svgio/source/svgreader/svgtoken.cxx @@ -317,7 +317,7 @@ namespace svgio if(aCaseLindependentSVGTokenMapperList.empty()) { - for(SVGTokenMapper::const_iterator aCurrent(aSVGTokenMapperList.begin()); aCurrent != aSVGTokenMapperList.end(); aCurrent++) + for(SVGTokenMapper::const_iterator aCurrent(aSVGTokenMapperList.begin()); aCurrent != aSVGTokenMapperList.end(); ++aCurrent) { aCaseLindependentSVGTokenMapperList.insert( SVGTokenValueType( -- cgit