Commit 2ce8e60d authored by remi cresson's avatar remi cresson
Browse files

COMP: remove some warnings (uint comp int)

No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
...@@ -284,7 +284,7 @@ inline TOutputPixel operator ()(const TInputPixel& input) const ...@@ -284,7 +284,7 @@ inline TOutputPixel operator ()(const TInputPixel& input) const
// Compute amplitude // Compute amplitude
int lastYear = dates[dates.size()-1].year; int lastYear = dates[dates.size()-1].year;
for (unsigned int i = 0 ; i < lastYear - firstYear +1 ; i++ ) for (int i = 0 ; i < lastYear - firstYear +1 ; i++ )
{ {
if (minimums[i] != this->GetInputNoDataValue() && maximums[i] != this->GetInputNoDataValue()) if (minimums[i] != this->GetInputNoDataValue() && maximums[i] != this->GetInputNoDataValue())
{ {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment