[Cmake-commits] [cmake-commits] king committed cmELF.cxx 1.9 1.10
cmake-commits at cmake.org
cmake-commits at cmake.org
Tue Apr 15 09:00:23 EDT 2008
Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv32424
Modified Files:
cmELF.cxx
Log Message:
COMP: Fix signed/unsigned comparison warning in cmELF.
Index: cmELF.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmELF.cxx,v
retrieving revision 1.9
retrieving revision 1.10
diff -C 2 -d -r1.9 -r1.10
*** cmELF.cxx 14 Apr 2008 19:02:24 -0000 1.9
--- cmELF.cxx 15 Apr 2008 13:00:20 -0000 1.10
***************
*** 590,594 ****
return 0;
}
! if(j < 0 || j >= this->DynamicSectionEntries.size())
{
return 0;
--- 590,594 ----
return 0;
}
! if(j < 0 || j >= static_cast<int>(this->DynamicSectionEntries.size()))
{
return 0;
More information about the Cmake-commits
mailing list