Submitter | phabricator |
---|---|
Date | Aug. 31, 2019, 10:59 p.m. |
Message ID | <4b4c36576d2a61495855f6c7570e4bc5@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/41457/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/rust/hg-cpython/src/ref_sharing.rs b/rust/hg-cpython/src/ref_sharing.rs --- a/rust/hg-cpython/src/ref_sharing.rs +++ b/rust/hg-cpython/src/ref_sharing.rs @@ -345,7 +345,7 @@ $name, $leaked, Box< - Iterator<Item = (&'static $key_type, &'static $value_type)> + dyn Iterator<Item = (&'static $key_type, &'static $value_type)> + Send, >, $success_func, @@ -367,7 +367,7 @@ py_shared_iterator_impl!( $name, $leaked, - Box<Iterator<Item = &'static $key_type> + Send>, + Box<dyn Iterator<Item = &'static $key_type> + Send>, $success_func, $success_type );