Skip to content

Commit

Permalink
clippy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
adpaco-aws committed Oct 7, 2024
1 parent cb123e5 commit 7311f49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/kani-cov/src/report.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ pub fn output_coverage_results(
/// coverage instrumentation inserts a single-column code span after the end of
/// a line. More details in <https://github.com/model-checking/kani/issues/3543>
fn results_with_nonexisting_regions_in_line(
results: &Vec<CovResult>,
line: &String,
results: &[CovResult],
line: &str,
idx: LineNumber,
) -> bool {
let results_with_oob_regions = results.iter().filter(|m| {
Expand Down

0 comments on commit 7311f49

Please sign in to comment.