[Cmake-commits] CMake branch, master, updated. 418e600006be393fb5b64644f922a58596178be1
cmake-commits at cmake.org
cmake-commits at cmake.org
Wed May 12 10:43:16 EDT 2010
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, master has been updated
via 418e600006be393fb5b64644f922a58596178be1 (commit)
from 288a58a614fa4bce8cb0a29876b09f22ad44c7ad (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=418e600006be393fb5b64644f922a58596178be1
commit 418e600006be393fb5b64644f922a58596178be1
Author: Bill Hoffman <bill.hoffman at kitware.com>
Date: Wed May 12 10:41:06 2010 -0400
Try to remove some warnings.
diff --git a/Source/cmELF.cxx b/Source/cmELF.cxx
index 763fdd8..147f6ac 100644
--- a/Source/cmELF.cxx
+++ b/Source/cmELF.cxx
@@ -687,7 +687,7 @@ cmELFInternalImpl<Types>::GetDynamicSectionString(int tag)
// The value has been read successfully. Report it.
se.Position = static_cast<unsigned long>(strtab.sh_offset + first);
se.Size = last - first;
- se.IndexInSection = di - this->DynamicSectionEntries.begin();
+ se.IndexInSection = static_cast<int>(di - this->DynamicSectionEntries.begin());
return &se;
}
}
-----------------------------------------------------------------------
Summary of changes:
Source/cmELF.cxx | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list