Skip to content

Commit

Permalink
Another loop reference fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 13, 2021
1 parent c8f24fb commit 2dc3a1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/raster/qgsrasterrange.h
Expand Up @@ -130,7 +130,7 @@ class CORE_EXPORT QgsRasterRange
*/
static bool contains( double value, const QgsRasterRangeList &rangeList )
{
for ( const QgsRasterRange range : rangeList )
for ( const QgsRasterRange &range : rangeList )
{
if ( range.contains( value ) )
{
Expand Down

0 comments on commit 2dc3a1b

Please sign in to comment.