Skip to content

Commit

Permalink
qgsgeometrygapcheck.cpp: fix false-positive warning about potentially…
Browse files Browse the repository at this point in the history
… unused variable
  • Loading branch information
rouault authored and nyalldawson committed Jun 15, 2020
1 parent 8de4821 commit 6e81d1f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -339,7 +339,7 @@ bool QgsGeometryGapCheck::mergeWithNeighbor( const QMap<QString, QgsFeaturePool
const QgsAbstractGeometry *testGeom = featureGeom.constGet();
for ( int iPart = 0, nParts = testGeom->partCount(); iPart < nParts; ++iPart )
{
double val;
double val = 0;
switch ( condition )
{
case LongestSharedEdge:
Expand Down

0 comments on commit 6e81d1f

Please sign in to comment.