Skip to content

Commit

Permalink
Merge pull request rust-ndarray#380 from jturner314/fix-arith-mut
Browse files Browse the repository at this point in the history
Fix trait bound on arr1 (op) &arr2
  • Loading branch information
bluss authored Nov 20, 2017
2 parents a380737 + 45e6b5d commit 5802f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/impl_ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl<A, S, S2, D, E> $trt<ArrayBase<S2, E>> for ArrayBase<S, D>
/// **Panics** if broadcasting isn’t possible.
impl<'a, A, S, S2, D, E> $trt<&'a ArrayBase<S2, E>> for ArrayBase<S, D>
where A: Clone + $trt<A, Output=A>,
S: DataMut<Elem=A>,
S: DataOwned<Elem=A> + DataMut,
S2: Data<Elem=A>,
D: Dimension,
E: Dimension,
Expand Down

0 comments on commit 5802f00

Please sign in to comment.