Skip to content

Commit 133d3d7

Browse files
committed
masks: removed "const" qualifier from variable in SSE2-only path
1 parent 7713b44 commit 133d3d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rtengine/masks.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,7 @@ bool generateMasks(Imagefloat *rgb, const std::vector<Mask> &masks, int offset_x
962962
if (has_mask) {
963963
#ifdef __SSE2__
964964
// use precalculated values
965-
const float c = cBuffer[x];
965+
float c = cBuffer[x];
966966
float h = hBuffer[x];
967967
#else
968968
float c, h;

0 commit comments

Comments
 (0)