Skip to content

Commit

Permalink
fix postfixoperator. pet cppcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti authored and nyalldawson committed Jun 9, 2021
1 parent e7a2565 commit 0845ae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/geometry/qgsgeometryutils.cpp
Expand Up @@ -1842,7 +1842,7 @@ bool QgsGeometryUtils::transferFirstZOrMValueToPoint( const QgsAbstractGeometry:
bool zFound = false;
bool mFound = false;

for ( QgsAbstractGeometry::vertex_iterator it = verticesBegin ; it != verticesEnd ; it++ )
for ( QgsAbstractGeometry::vertex_iterator it = verticesBegin ; it != verticesEnd ; ++it )
{
if ( !mFound && ( *it ).isMeasure() )
{
Expand Down

0 comments on commit 0845ae2

Please sign in to comment.