[NFC] Fixed -Wsign-compare warning

llvm-svn: 345755
This commit is contained in:
David Bolvansky
2018-10-31 18:03:36 +00:00
parent a01348fa2a
commit 8f81aed12d

View File

@@ -1547,7 +1547,7 @@ lldb::ValueObjectListSP ScriptInterpreterPython::GetRecognizedArguments(
if (py_return.get()) {
PythonList result_list(PyRefType::Borrowed, py_return.get());
ValueObjectListSP result = ValueObjectListSP(new ValueObjectList());
for (int i = 0; i < result_list.GetSize(); i++) {
for (size_t i = 0; i < result_list.GetSize(); i++) {
PyObject *item = result_list.GetItemAtIndex(i).get();
lldb::SBValue *sb_value_ptr =
(lldb::SBValue *)g_swig_cast_to_sbvalue(item);