Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
igagis committed Oct 31, 2024
1 parent 78bcbfd commit 24d8c27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rasterimage/image_span.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class image_span : public dimensioned
);

private:
size_t stride_px;
size_t stride_px = 0;

pixel_type* buffer = nullptr;

Expand All @@ -79,7 +79,7 @@ class image_span : public dimensioned

std::conditional_t<is_const, const_value_type, non_const_value_type> line;

size_t stride_px{};
size_t stride_px = 0;

iterator_internal(
decltype(line) line, //
Expand Down

0 comments on commit 24d8c27

Please sign in to comment.