Remove unused variable

This commit is contained in:
Nyall Dawson 2017-04-24 09:23:03 +10:00
parent 3584a5f914
commit 94c56aaf8c
2 changed files with 0 additions and 3 deletions

View File

@ -38,7 +38,6 @@
QgsOgrFeatureIterator::QgsOgrFeatureIterator( QgsOgrFeatureSource *source, bool ownSource, const QgsFeatureRequest &request )
: QgsAbstractFeatureIteratorFromSource<QgsOgrFeatureSource>( source, ownSource, request )
, mFeatureFetched( false )
, mConn( nullptr )
, ogrLayer( nullptr )
, mSubsetStringSet( false )

View File

@ -69,8 +69,6 @@ class QgsOgrFeatureIterator : public QgsAbstractFeatureIteratorFromSource<QgsOgr
//! Get an attribute associated with a feature
void getFeatureAttribute( OGRFeatureH ogrFet, QgsFeature &f, int attindex ) const;
bool mFeatureFetched;
QgsOgrConn *mConn = nullptr;
OGRLayerH ogrLayer;