mirror of
https://github.com/arvidn/libtorrent.git
synced 2026-05-08 00:39:53 -04:00
fix warning in python bindings
This commit is contained in:
committed by
Arvid Norberg
parent
3bec2a4a65
commit
079f2b6a1e
@@ -300,7 +300,7 @@ struct bitfield_to_list
|
||||
static PyObject* convert(T const& v)
|
||||
{
|
||||
list ret;
|
||||
for (auto const& i : v)
|
||||
for (auto const i : v)
|
||||
ret.append(i);
|
||||
return incref(ret.ptr());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user