remove bad return type

This commit is contained in:
Lukas Hermann 2022-08-16 22:06:43 +00:00
parent 41e1cc0db2
commit b9483ab545
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ impl<T> CooMatrix<T> {
}
/// Clear all triplets from the matrix.
pub fn clear_triplets(&mut self, i: usize, j: usize, v: T) -> Option<T>
pub fn clear_triplets(&mut self, i: usize, j: usize, v: T)
where
T: PartialEq,
{