From cf3e180f14dfeb1f74b892a45f70cd22a27c0adf Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 15 Apr 2008 09:00:20 -0400 Subject: COMP: Fix signed/unsigned comparison warning in cmELF. --- Source/cmELF.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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::GetDynamicEntryPosition(int j) { return 0; } - if(j < 0 || j >= this->DynamicSectionEntries.size()) + if(j < 0 || j >= static_cast(this->DynamicSectionEntries.size())) { return 0; } -- cgit v0.12