Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Mark unused var
  • Loading branch information
timlinux committed Mar 31, 2012
1 parent 0d745fa commit 2e5112d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/vector/qgsgeometryanalyzer.cpp
Expand Up @@ -1175,7 +1175,7 @@ QgsPoint QgsGeometryAnalyzer::createPointOffset( double x, double y, double dist
normalY *= ( dist / normalLength );

double debugLength = sqrt( normalX * normalX + normalY * normalY ); //control

Q_UNUSED( debugLength );
return QgsPoint( x - normalX, y - normalY ); //negative values -> left side, positive values -> right side
}

Expand Down

0 comments on commit 2e5112d

Please sign in to comment.