Remove FIXME-notes

This commit is contained in:
Lukas Lueg 2021-01-07 00:45:47 +01:00
parent 7ed824ebd1
commit 7a0ada0427

View File

@ -65,9 +65,6 @@ where
needs_sep: bool,
}
// FIXME This manual implementation is needed as #[derive] misplaces trait bounds,
// requiring <I as Iterator>::Item to be Debug on the struct-definition, which is
// not what we want.
#[unstable(feature = "iter_intersperse", reason = "recently added", issue = "79524")]
impl<I, G> crate::fmt::Debug for IntersperseWith<I, G>
where
@ -84,9 +81,6 @@ where
}
}
// FIXME This manual implementation is needed as #[derive] misplaces trait bounds,
// requiring <I as Iterator>::Item to be Clone on the struct-definition, which is
// not what we want.
#[unstable(feature = "iter_intersperse", reason = "recently added", issue = "79524")]
impl<I, G> crate::clone::Clone for IntersperseWith<I, G>
where