summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-10-01 14:06:22 +0200
committerJulien Nabet <serval2412@yahoo.fr>2017-10-01 14:53:10 +0200
commit22e748e68a87e1b470146eacad374c7dfef74f5a (patch)
treeac1c35ae78736cea81f8b40e1fe0ccddc672a1b1 /unodevtools
parent1aa96d69af7173af7c8e32a47699f574b1091c73 (diff)
Prefer prefix operator
Change-Id: I82f3f66bfc675dbc4a5d5b57d8715c3de01d9620 Reviewed-on: https://gerrit.libreoffice.org/42994 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/source/skeletonmaker/cppcompskeleton.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
index 8b63e8a2326a..529b9f48f26a 100644
--- a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
+++ b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
@@ -758,7 +758,7 @@ OString generateClassDefinition(std::ostream& o,
// printType(o, options, manager, iter->second.first.replace('.','/'),
// 1, false);
// o << " m_" << iter->first << ";\n";
-// iter++;
+// ++iter;
// }
// }
// if (!attributes.empty())
@@ -770,7 +770,7 @@ OString generateClassDefinition(std::ostream& o,
// printType(o, options, manager, iter->second.first.replace('.','/'),
// 1, false);
// o << " m_" << iter->first << ";\n";
-// iter++;
+// ++iter;
// }
// }