Skip to content

Commit

Permalink
Remove const qualifiers from public declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
szekerest authored and nyalldawson committed Jun 15, 2019
1 parent 58f8e76 commit d62bc00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/mssql/qgsmssqlfeatureiterator.h
Expand Up @@ -95,8 +95,8 @@ class QgsMssqlFeatureIterator : public QgsAbstractFeatureIteratorFromSource<QgsM

bool prepareOrderBy( const QList<QgsFeatureRequest::OrderByClause> &orderBys ) override;

double validLat( const double latitude ) const;
double validLon( const double longitude ) const;
double validLat( double latitude ) const;
double validLon( double longitude ) const;

// The current database
QSqlDatabase mDatabase;
Expand Down

0 comments on commit d62bc00

Please sign in to comment.