Eliminate integer sign comparison warning

llvm-svn: 192462
This commit is contained in:
Ed Maste 2013-10-11 16:30:20 +00:00
parent dd943a8919
commit 27738bec75
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ DynamicLoaderPOSIXDYLD::UnloadSections(const ModuleSP module)
assert(sections && "SectionList missing from unloaded module.");
const size_t num_sections = sections->GetSize();
for (auto i = 0; i < num_sections; ++i)
for (size_t i = 0; i < num_sections; ++i)
{
SectionSP section_sp (sections->GetSectionAtIndex(i));
load_list.SetSectionUnloaded(section_sp);