changeset 47332 | 4ee9f419c52e |
parent 47124 | cd8ca38fccff |
child 47335 | ed1583a845d2 |
--- a/rust/hg-core/src/dirstate.rs Wed May 19 13:15:00 2021 +0200 +++ b/rust/hg-core/src/dirstate.rs Wed May 19 13:15:00 2021 +0200 @@ -77,7 +77,7 @@ pub type StateMap = FastHashMap<HgPathBuf, DirstateEntry>; pub type StateMapIter<'a> = - Box<dyn Iterator<Item = (&'a HgPath, &'a DirstateEntry)> + Send + 'a>; + Box<dyn Iterator<Item = (&'a HgPath, DirstateEntry)> + Send + 'a>; pub type CopyMap = FastHashMap<HgPathBuf, HgPathBuf>; pub type CopyMapIter<'a> =