Skip to content

Commit

Permalink
Re-adds the Dimension bound to ToOwned
Browse files Browse the repository at this point in the history
  • Loading branch information
akern40 committed Nov 9, 2024
1 parent b9ee564 commit d575848
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/impl_ref_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,9 @@ where
}

impl<A, D> ToOwned for ArrayRef<A, D>
where A: Clone
where
A: Clone,
D: Dimension,
{
type Owned = Array<A, D>;

Expand Down

0 comments on commit d575848

Please sign in to comment.