Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
const correctness
  • Loading branch information
alexbruy committed Jan 29, 2019
1 parent 650f4d7 commit 92f6eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/wcs/qgswcscapabilities.cpp
Expand Up @@ -804,7 +804,7 @@ bool QgsWcsCapabilities::parseDescribeCoverageDom10( QByteArray const &xml, QgsW
}

// exclude invalid CRSs from the lists
for ( const QString &crsid : crsList )
for ( const QString &crsid : qgis::as_const( crsList ) )
{
if ( QgsCoordinateReferenceSystem::fromOgcWmsCrs( crsid ).isValid() )
{
Expand Down

0 comments on commit 92f6eda

Please sign in to comment.