Skip to content

Commit d62bc00

Browse files
szekerestnyalldawson
authored andcommittedJun 15, 2019
Remove const qualifiers from public declarations
1 parent 58f8e76 commit d62bc00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/providers/mssql/qgsmssqlfeatureiterator.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ class QgsMssqlFeatureIterator : public QgsAbstractFeatureIteratorFromSource<QgsM
9595

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

98-
double validLat( const double latitude ) const;
99-
double validLon( const double longitude ) const;
98+
double validLat( double latitude ) const;
99+
double validLon( double longitude ) const;
100100

101101
// The current database
102102
QSqlDatabase mDatabase;

0 commit comments

Comments
 (0)
Please sign in to comment.