Skip to content

Commit 614dedb

Browse files
committed
Remove the use of Rayon iterators
1 parent a9813aa commit 614dedb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/miri.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ impl rustc_driver::Callbacks for MiriCompilerCalls {
185185
let num_failed = sync::IntoDynSyncSend(AtomicU32::new(0));
186186
sync::par_for_each_in(many_seeds.seeds.clone(), |seed| {
187187
let mut config = config.clone();
188-
config.seed = Some(seed.into());
188+
config.seed = Some((*seed).into());
189189
eprintln!("Trying seed: {seed}");
190190
let return_code = miri::eval_entry(tcx, entry_def_id, entry_type, config)
191191
.unwrap_or(rustc_driver::EXIT_FAILURE);

0 commit comments

Comments
 (0)