Skip to content
Snippets Groups Projects
Commit 9f969d34 authored by Martin Larralde's avatar Martin Larralde
Browse files

Fix requirement for `Debug` element in `Clone` implementation of `DenseMatrix`

parent 725f3bab
No related branches found
No related tags found
No related merge requests found
......@@ -203,9 +203,7 @@ impl<T: Default + Copy, C: Unsigned, A: Unsigned + PowerOfTwo> DenseMatrix<T, C,
}
}
impl<T: Default + Copy + Debug, C: Unsigned, A: Unsigned + PowerOfTwo> Clone
for DenseMatrix<T, C, A>
{
impl<T: Default + Copy, C: Unsigned, A: Unsigned + PowerOfTwo> Clone for DenseMatrix<T, C, A> {
fn clone(&self) -> Self {
let mut clone = unsafe { Self::uninitialized(self.rows) };
let l = self.rows() * self.stride();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment