Skip to content

Commit 22a7177

Browse files
committed
Remove unused lifetimes
1 parent 33b9e08 commit 22a7177

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/option.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ impl<T: Send> Producer for OptionProducer<T> {
171171
///
172172
/// If any item is `None`, then all previous items collected are discarded,
173173
/// and it returns only `None`.
174-
impl<'a, C, T> FromParallelIterator<Option<T>> for Option<C>
174+
impl<C, T> FromParallelIterator<Option<T>> for Option<C>
175175
where
176176
C: FromParallelIterator<T>,
177177
T: Send,

src/result.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ delegate_indexed_iterator! {
9090
/// If any item is `Err`, then all previous `Ok` items collected are
9191
/// discarded, and it returns that error. If there are multiple errors, the
9292
/// one returned is not deterministic.
93-
impl<'a, C, T, E> FromParallelIterator<Result<T, E>> for Result<C, E>
93+
impl<C, T, E> FromParallelIterator<Result<T, E>> for Result<C, E>
9494
where
9595
C: FromParallelIterator<T>,
9696
T: Send,

0 commit comments

Comments
 (0)