Skip to content

Commit

Permalink
Fix clazy mixed const/non-const iterator warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Feb 2, 2018
1 parent 252dbdc commit 1a04dfb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -99,7 +99,7 @@ namespace QgsGeometryCheckerUtils
}
if ( mParent->mGeometryTypes.contains( mParent->mFeaturePools[*mLayerIt]->getLayer()->geometryType() ) )
{
mFeatureIt = mParent->mFeatureIds[*mLayerIt].begin();
mFeatureIt = mParent->mFeatureIds[*mLayerIt].constBegin();
return true;
}
++mLayerIt;
Expand Down

0 comments on commit 1a04dfb

Please sign in to comment.