Skip to content

Commit

Permalink
fix new clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
intarga committed Apr 8, 2024
1 parent 15a07d8 commit 9fbcbc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qc_tests/sct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ fn subset<T: Copy>(array: &[T], indices: &[usize]) -> Vec<T> {
}

fn compute_vertical_profile_theil_sen(
elevs: &Vec<f32>,
values: &Vec<f32>,
elevs: &[f32],
values: &[f32],
num_min_prof: usize,
min_elev_diff: f32,
) -> Vec<f32> {
Expand Down

0 comments on commit 9fbcbc2

Please sign in to comment.