Skip to content

Commit 2e5112d

Browse files
committed
Mark unused var
1 parent 0d745fa commit 2e5112d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/analysis/vector/qgsgeometryanalyzer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1175,7 +1175,7 @@ QgsPoint QgsGeometryAnalyzer::createPointOffset( double x, double y, double dist
11751175
normalY *= ( dist / normalLength );
11761176

11771177
double debugLength = sqrt( normalX * normalX + normalY * normalY ); //control
1178-
1178+
Q_UNUSED( debugLength );
11791179
return QgsPoint( x - normalX, y - normalY ); //negative values -> left side, positive values -> right side
11801180
}
11811181

0 commit comments

Comments
 (0)