summaryrefslogtreecommitdiffstats
path: root/Source/cmELF.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-04-15 13:00:20 (GMT)
committerBrad King <brad.king@kitware.com>2008-04-15 13:00:20 (GMT)
commitcf3e180f14dfeb1f74b892a45f70cd22a27c0adf (patch)
tree88aa9687c931a51af3163563ea39c272d8d5aa94 /Source/cmELF.cxx
parenta8604d07d0ae1f3acd68f5692ab157619249af73 (diff)
downloadCMake-cf3e180f14dfeb1f74b892a45f70cd22a27c0adf.zip
CMake-cf3e180f14dfeb1f74b892a45f70cd22a27c0adf.tar.gz
CMake-cf3e180f14dfeb1f74b892a45f70cd22a27c0adf.tar.bz2
COMP: Fix signed/unsigned comparison warning in cmELF.
Diffstat (limited to 'Source/cmELF.cxx')
-rw-r--r--Source/cmELF.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmELF.cxx b/Source/cmELF.cxx
index 5abc62a..2cf6b96 100644
--- a/Source/cmELF.cxx
+++ b/Source/cmELF.cxx
@@ -589,7 +589,7 @@ unsigned long cmELFInternalImpl<Types>::GetDynamicEntryPosition(int j)
{
return 0;
}
- if(j < 0 || j >= this->DynamicSectionEntries.size())
+ if(j < 0 || j >= static_cast<int>(this->DynamicSectionEntries.size()))
{
return 0;
}