We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c84d33b commit 00e2fadCopy full SHA for 00e2fad
src/Core/Common/GenerateOffsetsShapedImageNeighborhood/Code.cxx
@@ -65,11 +65,11 @@ PrintImageNeighborhoodShape(const TOffsets & offsets)
65
const itk::ImageBufferRange<const ImageType> imageBufferRange(*image);
66
auto imageBufferIterator = imageBufferRange.cbegin();
67
68
- for (int y{ 0 }; y < imageSize; ++y)
+ for (unsigned int y{ 0 }; y < imageSize; ++y)
69
{
70
std::cout << " ";
71
72
- for (int x{ 0 }; x < imageSize; ++x)
+ for (unsigned int x{ 0 }; x < imageSize; ++x)
73
74
std::cout << *imageBufferIterator << ' ';
75
++imageBufferIterator;
0 commit comments