Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix windows build (followup 15d2b36)
  • Loading branch information
jef-n committed May 25, 2018
1 parent a51d618 commit 9f0ea45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/oracle/qgsoraclefeatureiterator.cpp
Expand Up @@ -59,7 +59,7 @@ QgsOracleFeatureIterator::QgsOracleFeatureIterator( QgsOracleFeatureSource* sour

// ensure that all attributes required for order by are fetched
const QSet< QString > orderByAttributes = mRequest.orderBy().usedAttributes();
for ( const QString &attr : orderByAttributes )
Q_FOREACH ( const QString& attr, orderByAttributes )
{
int attrIndex = mSource->mFields.fieldNameIndex( attr );
if ( !mAttributeList.contains( attrIndex ) )
Expand Down

0 comments on commit 9f0ea45

Please sign in to comment.