From 42ab3f69037c8f9165adf8ba5b7a67f6beb648a2 Mon Sep 17 00:00:00 2001 From: geo-ant <54497890+geo-ant@users.noreply.github.com> Date: Fri, 21 Oct 2022 09:02:28 +0200 Subject: [PATCH] fix clippy lints in my code --- src/base/par_iter.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/base/par_iter.rs b/src/base/par_iter.rs index 3109e1ac..9beccee9 100644 --- a/src/base/par_iter.rs +++ b/src/base/par_iter.rs @@ -63,7 +63,7 @@ where } } -impl<'a, T, R: Dim, Cols: Dim, S: RawStorage> Matrix +impl> Matrix where T: Send + Sync + Clone + Debug + PartialEq + 'static, S: Sync, @@ -143,7 +143,7 @@ where } } -impl<'a, T, R: Dim, Cols: Dim, S: RawStorage + RawStorageMut> +impl + RawStorageMut> Matrix where T: Send + Sync + Clone + Debug + PartialEq + 'static,