diff options
author | Andy Gibbs <andyg1001@hotmail.co.uk> | 2013-06-19 19:04:53 +0000 |
---|---|---|
committer | Andy Gibbs <andyg1001@hotmail.co.uk> | 2013-06-19 19:04:53 +0000 |
commit | a297a97e0910500e2b7bcdaad0529c2fec3acd7d (patch) | |
tree | 8e5817ffe12bc3ae70eec378840a9e64a63eab2b /lldb/source/Interpreter/Options.cpp | |
parent | 00dfec6265dfe622b42a9d08b4c50a1974c4f040 (diff) | |
download | bcm5719-llvm-a297a97e0910500e2b7bcdaad0529c2fec3acd7d.tar.gz bcm5719-llvm-a297a97e0910500e2b7bcdaad0529c2fec3acd7d.zip |
Sort out a number of mismatched integer types in order to cut down the number of compiler warnings.
llvm-svn: 184333
Diffstat (limited to 'lldb/source/Interpreter/Options.cpp')
-rw-r--r-- | lldb/source/Interpreter/Options.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/source/Interpreter/Options.cpp b/lldb/source/Interpreter/Options.cpp index 98e153c131b..439d319e0c6 100644 --- a/lldb/source/Interpreter/Options.cpp +++ b/lldb/source/Interpreter/Options.cpp @@ -206,7 +206,7 @@ Options::BuildValidOptionSets () } else { - for (int j = 0; j < LLDB_MAX_NUM_OPTION_SETS; j++) + for (uint32_t j = 0; j < LLDB_MAX_NUM_OPTION_SETS; j++) { if (this_usage_mask & (1 << j)) { @@ -224,7 +224,7 @@ Options::BuildValidOptionSets () for (int i = 0; i < num_options; ++i) { - for (int j = 0; j < num_option_sets; j++) + for (uint32_t j = 0; j < num_option_sets; j++) { if (opt_defs[i].usage_mask & 1 << j) { @@ -759,7 +759,7 @@ Options::HandleOptionCompletion cur_opt_std_str.erase(char_pos); const char *cur_opt_str = cur_opt_std_str.c_str(); - for (int i = 0; i < opt_element_vector.size(); i++) + for (size_t i = 0; i < opt_element_vector.size(); i++) { int opt_pos = opt_element_vector[i].opt_pos; int opt_arg_pos = opt_element_vector[i].opt_arg_pos; @@ -833,7 +833,7 @@ Options::HandleOptionCompletion // The options definitions table has duplicates because of the // way the grouping information is stored, so only add once. bool duplicate = false; - for (int k = 0; k < matches.GetSize(); k++) + for (size_t k = 0; k < matches.GetSize(); k++) { if (matches.GetStringAtIndex(k) == full_name) { @@ -944,7 +944,7 @@ Options::HandleOptionArgumentCompletion if (completion_mask & CommandCompletions::eSourceFileCompletion || completion_mask & CommandCompletions::eSymbolCompletion) { - for (int i = 0; i < opt_element_vector.size(); i++) + for (size_t i = 0; i < opt_element_vector.size(); i++) { int cur_defs_index = opt_element_vector[i].opt_defs_index; int cur_arg_pos = opt_element_vector[i].opt_arg_pos; |