Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove unused variable
  • Loading branch information
nyalldawson committed May 10, 2023
1 parent 5d9ea98 commit 4239e85
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/core/qgstiles.cpp
Expand Up @@ -404,8 +404,6 @@ QVector<QgsTileXYZ> QgsTileMatrixSet::tilesInRange( QgsTileRange range, int zoom
QVector<QgsTileXYZ> tiles;
tiles.reserve( static_cast< std::size_t>( range.endColumn() - range.startColumn() + 1 ) * ( range.endRow() - range.startRow() + 1 ) );

const QgsTileMatrix &matrix = mTileMatrices.value( zoomLevel );

for ( int tileRow = range.startRow(); tileRow <= range.endRow(); ++tileRow )
{
for ( int tileColumn = range.startColumn(); tileColumn <= range.endColumn(); ++tileColumn )
Expand Down

0 comments on commit 4239e85

Please sign in to comment.