[Libreoffice-commits] core.git: svgio/source

Julien Nabet serval2412 at yahoo.fr
Sat Oct 18 04:02:52 PDT 2014


 svgio/source/svgreader/svgtoken.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 25548c57eedcb40f8f9b3e3d6707311cfe0b2a35
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Sat Oct 18 13:01:49 2014 +0200

    cppcheck: Prefer prefix ++/-- operators for non-primitive types
    
    Change-Id: I0dd2f1d2efef7995aaf2ab7656c24178a02eb9cd

diff --git a/svgio/source/svgreader/svgtoken.cxx b/svgio/source/svgreader/svgtoken.cxx
index 0e3793f..fa5d7ba 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(


More information about the Libreoffice-commits mailing list