Skip to content

Commit

Permalink
Fix compilation error likely due to 5d476e5
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Nov 14, 2017
1 parent 5f915a0 commit ec9e87d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/geometry/qgscompoundcurve.cpp
Expand Up @@ -802,7 +802,7 @@ double QgsCompoundCurve::vertexAngle( QgsVertexId vertex ) const

double QgsCompoundCurve::segmentLength( QgsVertexId startVertex ) const
{
QList< QPair<int, QgsVertexId> > curveIds = curveVertexId( startVertex );
QVector< QPair<int, QgsVertexId> > curveIds = curveVertexId( startVertex );
double length = 0.0;
for ( auto it = curveIds.constBegin(); it != curveIds.constEnd(); ++it )
{
Expand Down

0 comments on commit ec9e87d

Please sign in to comment.