Skip to content

Commit

Permalink
0.2.13: fix warning: comparison of integer expressions of different s…
Browse files Browse the repository at this point in the history
…ignedness (#133)
  • Loading branch information
zvezdochiot committed Jul 16, 2023
1 parent 396cd18 commit ec8390d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Despeckle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ Despeckle::despeckleInPlace(
}
#pragma omp critical
{
for (int i = 0; i < components_l.size(); ++i) {
for (size_t i = 0; i < components_l.size(); ++i) {
components[i].num_pixels += components_l[i].num_pixels;
bounding_boxes[i].extend(bounding_boxes_l[i]);
}
Expand Down

0 comments on commit ec8390d

Please sign in to comment.