Skip to content

Commit ec9e87d

Browse files
committedNov 14, 2017
Fix compilation error likely due to 5d476e5
1 parent 5f915a0 commit ec9e87d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/geometry/qgscompoundcurve.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ double QgsCompoundCurve::vertexAngle( QgsVertexId vertex ) const
802802

803803
double QgsCompoundCurve::segmentLength( QgsVertexId startVertex ) const
804804
{
805-
QList< QPair<int, QgsVertexId> > curveIds = curveVertexId( startVertex );
805+
QVector< QPair<int, QgsVertexId> > curveIds = curveVertexId( startVertex );
806806
double length = 0.0;
807807
for ( auto it = curveIds.constBegin(); it != curveIds.constEnd(); ++it )
808808
{

0 commit comments

Comments
 (0)
Please sign in to comment.