Fix compiler warnings

This commit is contained in:
Pavel Krajcevski 2016-01-14 12:35:03 -05:00
parent 6cd8facf49
commit a15e015b82

View file

@ -216,8 +216,8 @@ Image<PixelType> Image<PixelType>::Diff(Image<PixelType> *other, float mult) {
other->ComputePixels(); other->ComputePixels();
Image<PixelType> result(GetWidth(), GetHeight()); Image<PixelType> result(GetWidth(), GetHeight());
for (int j = 0; j < GetHeight(); ++j) { for (uint32 j = 0; j < GetHeight(); ++j) {
for (int i = 0; i < GetWidth(); ++i) { for (uint32 i = 0; i < GetWidth(); ++i) {
result(i, j) = PixelAbs((*this)(i, j) - (*other)(i, j)); result(i, j) = PixelAbs((*this)(i, j) - (*other)(i, j));
result(i, j) *= mult; result(i, j) *= mult;
result(i, j).MakeOpaque(); result(i, j).MakeOpaque();