Skip to content

Commit b55a498

Browse files
committed
FilterRgb32RangeFilter: remove const qualifier for data
1 parent f2043da commit b55a498

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SerialPrograms/Source/Kernels/ImageFilters/RGB32_Range/Kernels_ImageFilter_RGB32_Range.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ size_t filter_rgb32_range(
3232
// The purpose is to reduce passes over the entire image.
3333
// All matricies must have the same dimensions.
3434
struct FilterRgb32RangeFilter{
35-
uint32_t* const data; // Pointer will be overwritten.
35+
uint32_t* data; // Pointer will be overwritten.
3636
const size_t bytes_per_row;
3737
const uint32_t mins;
3838
const uint32_t maxs;

0 commit comments

Comments
 (0)