diff --git a/src/base/iter.rs b/src/base/iter.rs index b396b271..a076bd99 100644 --- a/src/base/iter.rs +++ b/src/base/iter.rs @@ -17,7 +17,7 @@ use crate::base::{Matrix, MatrixView, MatrixViewMut, Scalar}; macro_rules! iterator { (struct $Name:ident for $Storage:ident.$ptr: ident -> $Ptr:ty, $Ref:ty, $SRef: ty) => { /// An iterator through a dense matrix with arbitrary strides matrix. - #[derive(Debug)] + #[derive(Clone, Debug)] pub struct $Name<'a, T, R: Dim, C: Dim, S: 'a + $Storage> { ptr: $Ptr, inner_ptr: $Ptr,