Skip to content

Commit ef2f600

Browse files
committed
Remove unnecessary lifetime parameter
Rust 1.23 fixed the original issue (#103) that required `'b` to be added. (See rust-lang/rust#32008, rust-lang/rust#45425, and rust-lang/rust#45435 for the relevant Rust issues/PRs.)
1 parent 6d2eb5e commit ef2f600

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/impl_ops.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ impl<'a, A, S, S2, D, E> $trt<&'a ArrayBase<S2, E>> for ArrayBase<S, D>
105105
/// If their shapes disagree, `rhs` is broadcast to the shape of `self`.
106106
///
107107
/// **Panics** if broadcasting isn’t possible.
108-
impl<'a, 'b, A, S, S2, D, E> $trt<&'a ArrayBase<S2, E>> for &'b ArrayBase<S, D>
108+
impl<'a, A, S, S2, D, E> $trt<&'a ArrayBase<S2, E>> for &'a ArrayBase<S, D>
109109
where A: Clone + $trt<A, Output=A>,
110110
S: Data<Elem=A>,
111111
S2: Data<Elem=A>,

0 commit comments

Comments
 (0)