Skip to content

Commit

Permalink
Fix compiling with clang
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Jun 13, 2016
1 parent fadc25a commit d1a9f84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/qgsvectorlayer.cpp
Expand Up @@ -3183,7 +3183,7 @@ void QgsVectorLayer::uniqueValues( int index, QList<QVariant> &uniqueValues, int
mDataProvider->uniqueValues( index, uniqueValues, limit );
return;
}
FALLTHROUGH
FALLTHROUGH;
//we need to go through each feature
case QgsFields::OriginJoin:
case QgsFields::OriginExpression:
Expand Down Expand Up @@ -3244,7 +3244,7 @@ QVariant QgsVectorLayer::minimumValue( int index )
return mDataProvider->minimumValue( index );
}
}
FALLTHROUGH
FALLTHROUGH;
// no choice but to go through all features
case QgsFields::OriginExpression:
case QgsFields::OriginJoin:
Expand Down Expand Up @@ -3302,7 +3302,7 @@ QVariant QgsVectorLayer::maximumValue( int index )
return mDataProvider->maximumValue( index );
}

FALLTHROUGH
FALLTHROUGH;
//no choice but to go through each feature
case QgsFields::OriginJoin:
case QgsFields::OriginExpression:
Expand Down

0 comments on commit d1a9f84

Please sign in to comment.