Skip to content

Commit 7b99a72

Browse files
committedAug 15, 2012
Use Q_UNUSED instead of self-assignment
1 parent c325424 commit 7b99a72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/analysis/network/qgslinevectorlayerdirector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ void QgsLineVectorLayerDirector::makeGraph( QgsGraphBuilderInterface *builder, c
200200

201201
if ( pointLengthMap[ i ].mLength > info.mLength )
202202
{
203-
info.mTiedPoint = info.mTiedPoint ;
203+
Q_UNUSED( info.mTiedPoint );
204204
info.mFirstPoint = pt1;
205205
info.mLastPoint = pt2;
206206

0 commit comments

Comments
 (0)
Please sign in to comment.