Skip to content

Commit

Permalink
remove bad return type
Browse files Browse the repository at this point in the history
  • Loading branch information
lsh committed Aug 16, 2022
1 parent 41e1cc0 commit b9483ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nalgebra-sparse/src/coo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
{
Expand Down

0 comments on commit b9483ab

Please sign in to comment.