From fcf46b20c1a9b7f634cadfeb4d611cd5ca8a192f Mon Sep 17 00:00:00 2001 From: Emmanuel Christophe <emmanuel.christophe@orfeo-toolbox.org> Date: Fri, 30 Jan 2009 15:32:24 +0800 Subject: [PATCH] COMP: warning correction --- Code/BasicFilters/otbUnaryFunctorObjectListFilter.txx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/BasicFilters/otbUnaryFunctorObjectListFilter.txx b/Code/BasicFilters/otbUnaryFunctorObjectListFilter.txx index f312194669..0bccd2a3c7 100644 --- a/Code/BasicFilters/otbUnaryFunctorObjectListFilter.txx +++ b/Code/BasicFilters/otbUnaryFunctorObjectListFilter.txx @@ -74,7 +74,7 @@ template <class TInputList, class TOutputList, class TFunction > { // copy the lists to the output OutputListPointer outputPtr = this->GetOutput(); - for (int i=0; i< this->m_ObjectListPerThread.size(); ++i) + for (unsigned int i=0; i< this->m_ObjectListPerThread.size(); ++i) { for(OutputListIterator it = this->m_ObjectListPerThread[i]->Begin(); it != this->m_ObjectListPerThread[i]->End(); -- GitLab