diff options
author | Brad King <brad.king@kitware.com> | 2008-04-15 13:00:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-04-15 13:00:20 (GMT) |
commit | cf3e180f14dfeb1f74b892a45f70cd22a27c0adf (patch) | |
tree | 88aa9687c931a51af3163563ea39c272d8d5aa94 /Source/cmELF.cxx | |
parent | a8604d07d0ae1f3acd68f5692ab157619249af73 (diff) | |
download | CMake-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.cxx | 2 |
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; } |