mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-01 00:46:20 -05:00
Fix compiling with clang
This commit is contained in:
parent
fadc25abb3
commit
d1a9f84304
@ -3183,7 +3183,7 @@ void QgsVectorLayer::uniqueValues( int index, QList<QVariant> &uniqueValues, int
|
|||||||
mDataProvider->uniqueValues( index, uniqueValues, limit );
|
mDataProvider->uniqueValues( index, uniqueValues, limit );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
FALLTHROUGH
|
FALLTHROUGH;
|
||||||
//we need to go through each feature
|
//we need to go through each feature
|
||||||
case QgsFields::OriginJoin:
|
case QgsFields::OriginJoin:
|
||||||
case QgsFields::OriginExpression:
|
case QgsFields::OriginExpression:
|
||||||
@ -3244,7 +3244,7 @@ QVariant QgsVectorLayer::minimumValue( int index )
|
|||||||
return mDataProvider->minimumValue( index );
|
return mDataProvider->minimumValue( index );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
FALLTHROUGH
|
FALLTHROUGH;
|
||||||
// no choice but to go through all features
|
// no choice but to go through all features
|
||||||
case QgsFields::OriginExpression:
|
case QgsFields::OriginExpression:
|
||||||
case QgsFields::OriginJoin:
|
case QgsFields::OriginJoin:
|
||||||
@ -3302,7 +3302,7 @@ QVariant QgsVectorLayer::maximumValue( int index )
|
|||||||
return mDataProvider->maximumValue( index );
|
return mDataProvider->maximumValue( index );
|
||||||
}
|
}
|
||||||
|
|
||||||
FALLTHROUGH
|
FALLTHROUGH;
|
||||||
//no choice but to go through each feature
|
//no choice but to go through each feature
|
||||||
case QgsFields::OriginJoin:
|
case QgsFields::OriginJoin:
|
||||||
case QgsFields::OriginExpression:
|
case QgsFields::OriginExpression:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user