From 0754bd28f332c271c5f62633d5a4c46a32beaf5c Mon Sep 17 00:00:00 2001 From: Hennadii Chernyshchyk Date: Tue, 27 Jun 2023 14:02:20 +0300 Subject: [PATCH] Add `Clone` to `MatrixIter` and `MatrixIterMut` --- src/base/iter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/iter.rs b/src/base/iter.rs index b396b271b..a076bd993 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,