Skip to content

Commit

Permalink
Fix clippy issues (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Aghili committed Oct 15, 2024
1 parent 666a818 commit 1593d23
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions kani-driver/src/harness_runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use rayon::prelude::*;
use std::fs::File;
use std::io::Write;
use std::path::Path;
use std::time::Instant;

use crate::args::OutputFormat;
use crate::call_cbmc::{VerificationResult, VerificationStatus};
Expand Down Expand Up @@ -46,7 +45,7 @@ impl<'sess, 'pr> HarnessRunner<'sess, 'pr> {

let sorted_harnesses = crate::metadata::sort_harnesses_by_loc(harnesses);
let pool = {
let mut builder = rayon::ThreadPoolBuilder::new();
let builder = rayon::ThreadPoolBuilder::new();
builder.build()?
};

Expand Down

0 comments on commit 1593d23

Please sign in to comment.