Skip to content

Commit d1a9f84

Browse files
committedJun 13, 2016
Fix compiling with clang
1 parent fadc25a commit d1a9f84

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/core/qgsvectorlayer.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3183,7 +3183,7 @@ void QgsVectorLayer::uniqueValues( int index, QList<QVariant> &uniqueValues, int
31833183
mDataProvider->uniqueValues( index, uniqueValues, limit );
31843184
return;
31853185
}
3186-
FALLTHROUGH
3186+
FALLTHROUGH;
31873187
//we need to go through each feature
31883188
case QgsFields::OriginJoin:
31893189
case QgsFields::OriginExpression:
@@ -3244,7 +3244,7 @@ QVariant QgsVectorLayer::minimumValue( int index )
32443244
return mDataProvider->minimumValue( index );
32453245
}
32463246
}
3247-
FALLTHROUGH
3247+
FALLTHROUGH;
32483248
// no choice but to go through all features
32493249
case QgsFields::OriginExpression:
32503250
case QgsFields::OriginJoin:
@@ -3302,7 +3302,7 @@ QVariant QgsVectorLayer::maximumValue( int index )
33023302
return mDataProvider->maximumValue( index );
33033303
}
33043304

3305-
FALLTHROUGH
3305+
FALLTHROUGH;
33063306
//no choice but to go through each feature
33073307
case QgsFields::OriginJoin:
33083308
case QgsFields::OriginExpression:

0 commit comments

Comments
 (0)
Please sign in to comment.