diff options
author | Ed Maste <emaste@freebsd.org> | 2015-06-17 17:29:56 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2015-06-17 17:29:56 +0000 |
commit | 0e978481e1fdc09577ae30b29380e869e03f173b (patch) | |
tree | 73715d15a8b1cc45dc761e6f2e4d92f00ecdc967 /lldb/source/Commands/CommandObjectCommands.cpp | |
parent | ca8a82d5c70fb19df909dc6b95ecca2179526308 (diff) | |
download | llvm-0e978481e1fdc09577ae30b29380e869e03f173b.zip llvm-0e978481e1fdc09577ae30b29380e869e03f173b.tar.gz llvm-0e978481e1fdc09577ae30b29380e869e03f173b.tar.bz2 |
Correct type in for loop to remove signedness warning
llvm-svn: 239918
Diffstat (limited to 'lldb/source/Commands/CommandObjectCommands.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectCommands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp index 238a062..5fd99cf 100644 --- a/lldb/source/Commands/CommandObjectCommands.cpp +++ b/lldb/source/Commands/CommandObjectCommands.cpp @@ -1685,7 +1685,7 @@ protected: return false; } - for (int i = 0; + for (size_t i = 0; i < argc; i++) { |