Skip to content

Commit 9f0ea45

Browse files
committed
Fix windows build (followup 15d2b36)
1 parent a51d618 commit 9f0ea45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/providers/oracle/qgsoraclefeatureiterator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ QgsOracleFeatureIterator::QgsOracleFeatureIterator( QgsOracleFeatureSource* sour
5959

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

0 commit comments

Comments
 (0)