diff options
| author | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2025-03-27 00:19:52 +0100 |
|---|---|---|
| committer | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2025-04-10 22:05:06 +0200 |
| commit | 02f10d9bfe41c6c6650f72965d74f27e92dc3986 (patch) | |
| tree | dde75be2aae5eb5edec3ad6f8a59f1311fcca2ae /compiler/rustc_monomorphize/src | |
| parent | 69b3959afec9b5468d5de15133b199553f6e55d2 (diff) | |
Remove the use of Rayon iterators
Diffstat (limited to 'compiler/rustc_monomorphize/src')
| -rw-r--r-- | compiler/rustc_monomorphize/src/collector.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_monomorphize/src/collector.rs b/compiler/rustc_monomorphize/src/collector.rs index 6e676ac6b8d..1dbb35f92c2 100644 --- a/compiler/rustc_monomorphize/src/collector.rs +++ b/compiler/rustc_monomorphize/src/collector.rs @@ -1689,7 +1689,7 @@ pub(crate) fn collect_crate_mono_items<'tcx>( let mut recursion_depths = DefIdMap::default(); collect_items_rec( tcx, - dummy_spanned(root), + dummy_spanned(*root), &state, &mut recursion_depths, recursion_limit, |
