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/Commands/CommandObjectHelp.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/Commands/CommandObjectHelp.cpp')
| -rw-r--r-- | lldb/source/Commands/CommandObjectHelp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectHelp.cpp b/lldb/source/Commands/CommandObjectHelp.cpp index 7d638a4732e..d2c97f91260 100644 --- a/lldb/source/Commands/CommandObjectHelp.cpp +++ b/lldb/source/Commands/CommandObjectHelp.cpp @@ -94,7 +94,7 @@ CommandObjectHelp::DoExecute (Args& command, CommandReturnObject &result) CommandObject *sub_cmd_obj = cmd_obj; // Loop down through sub_command dictionaries until we find the command object that corresponds // to the help command entered. - for (int i = 1; i < argc && all_okay; ++i) + for (size_t i = 1; i < argc && all_okay; ++i) { std::string sub_command = command.GetArgumentAtIndex(i); matches.Clear(); |

