Sort out a number of mismatched integer types in order to cut down the number of compiler warnings.

llvm-svn: 184333
This commit is contained in:
Andy Gibbs
2013-06-19 19:04:53 +00:00
parent 00dfec6265
commit a297a97e09
33 changed files with 78 additions and 78 deletions

View File

@@ -151,7 +151,7 @@ OptionValuePathMappings::SetValueFromCString (const char *value, VarSetOperation
{
// Sort and then erase in reverse so indexes are always valid
std::sort(remove_indexes.begin(), remove_indexes.end());
for (int j=num_remove_indexes-1; j<num_remove_indexes; ++j)
for (size_t j=num_remove_indexes-1; j<num_remove_indexes; ++j)
{
m_path_mappings.Remove (j, m_notify_changes);
}