fix clippy lints in my code

This commit is contained in:
geo-ant 2022-10-21 09:02:28 +02:00 committed by Sébastien Crozet
parent a4e28a136e
commit 42ab3f6903
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ where
}
}
impl<'a, T, R: Dim, Cols: Dim, S: RawStorage<T, R, Cols>> Matrix<T, R, Cols, S>
impl<T, R: Dim, Cols: Dim, S: RawStorage<T, R, Cols>> Matrix<T, R, Cols, S>
where
T: Send + Sync + Clone + Debug + PartialEq + 'static,
S: Sync,
@ -143,7 +143,7 @@ where
}
}
impl<'a, T, R: Dim, Cols: Dim, S: RawStorage<T, R, Cols> + RawStorageMut<T, R, Cols>>
impl<T, R: Dim, Cols: Dim, S: RawStorage<T, R, Cols> + RawStorageMut<T, R, Cols>>
Matrix<T, R, Cols, S>
where
T: Send + Sync + Clone + Debug + PartialEq + 'static,