From a297a97e0910500e2b7bcdaad0529c2fec3acd7d Mon Sep 17 00:00:00 2001 From: Andy Gibbs Date: Wed, 19 Jun 2013 19:04:53 +0000 Subject: Sort out a number of mismatched integer types in order to cut down the number of compiler warnings. llvm-svn: 184333 --- lldb/source/Commands/CommandObjectHelp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Commands/CommandObjectHelp.cpp') 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(); -- cgit v1.2.3