Kaydet (Commit) 7f9a6586 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:loopvartoosmall

Change-Id: I19d801444e4d1db5576b5742c60fc138384d3b70
üst 5ed20146
......@@ -766,7 +766,7 @@ Any Runtime::pyObject2Any ( const PyRef & source, enum ConversionMode mode ) con
{
Py_ssize_t l = PyList_Size (o);
Sequence<Any> s (l);
for (int i = 0; i < l; i++)
for (Py_ssize_t i = 0; i < l; i++)
{
s[i] = pyObject2Any (PyList_GetItem (o, i), mode );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment