Skip to content

Commit

Permalink
[rastercalc] Fix handling of unquoted bands > 9 (fix #7589)
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jun 10, 2015
1 parent efde7ad commit 5d50af0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/raster/qgsrastercalclexer.ll
Expand Up @@ -47,7 +47,7 @@ number {num1}|{num2}

non_ascii [\x80-\xFF]
raster_ref_char [A-Za-z0-9_./:]|{non_ascii}|[-]
raster_band_ref ({raster_ref_char}+)@{dig}
raster_band_ref ({raster_ref_char}+)@{dig}+
raster_band_ref_quoted \"(\\.|[^"])*\"
%%
Expand Down

0 comments on commit 5d50af0

Please sign in to comment.