aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectSyntax.cpp
diff options
context:
space:
mode:
authorAndy Gibbs <andyg1001@hotmail.co.uk>2013-06-19 19:04:53 +0000
committerAndy Gibbs <andyg1001@hotmail.co.uk>2013-06-19 19:04:53 +0000
commita297a97e0910500e2b7bcdaad0529c2fec3acd7d (patch)
tree8e5817ffe12bc3ae70eec378840a9e64a63eab2b /lldb/source/Commands/CommandObjectSyntax.cpp
parent00dfec6265dfe622b42a9d08b4c50a1974c4f040 (diff)
downloadllvm-a297a97e0910500e2b7bcdaad0529c2fec3acd7d.zip
llvm-a297a97e0910500e2b7bcdaad0529c2fec3acd7d.tar.gz
llvm-a297a97e0910500e2b7bcdaad0529c2fec3acd7d.tar.bz2
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/CommandObjectSyntax.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectSyntax.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectSyntax.cpp b/lldb/source/Commands/CommandObjectSyntax.cpp
index e08e86f..d2021ea 100644
--- a/lldb/source/Commands/CommandObjectSyntax.cpp
+++ b/lldb/source/Commands/CommandObjectSyntax.cpp
@@ -65,7 +65,7 @@ CommandObjectSyntax::DoExecute (Args& command, CommandReturnObject &result)
{
cmd_obj = m_interpreter.GetCommandObject (command.GetArgumentAtIndex(0));
bool all_okay = true;
- for (int i = 1; i < argc; ++i)
+ for (size_t i = 1; i < argc; ++i)
{
std::string sub_command = command.GetArgumentAtIndex (i);
if (!cmd_obj->IsMultiwordObject())