diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-03-27 20:19:14 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-03-27 20:19:14 +0000 |
commit | dab893cb99c9dce859135c46b6f4e2be2ef4cf4d (patch) | |
tree | 3a2014606ce74e98be0cd8ecd07652760d52d2d5 /lldb/source/Commands/CommandObjectTarget.cpp | |
parent | 9a71c99844972bb352067d00a4d35b848238fc9d (diff) | |
download | llvm-dab893cb99c9dce859135c46b6f4e2be2ef4cf4d.zip llvm-dab893cb99c9dce859135c46b6f4e2be2ef4cf4d.tar.gz llvm-dab893cb99c9dce859135c46b6f4e2be2ef4cf4d.tar.bz2 |
Fix -Wsign-compare warning
llvm-svn: 233408
Diffstat (limited to 'lldb/source/Commands/CommandObjectTarget.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index 8f78383..e9ab673 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -640,7 +640,7 @@ protected: if (m_all_option.GetOptionValue()) { - for (uint32_t i = 0; i < target_list.GetNumTargets(); ++i) + for (int i = 0; i < target_list.GetNumTargets(); ++i) delete_target_list.push_back(target_list.GetTargetAtIndex(i)); } else if (argc > 0) |