about summary refs log tree commit diff
path: root/compiler/rustc_hir_analysis/src
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2023-10-03 12:20:15 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2023-10-03 18:12:37 +1100
commita2051dd578f70e4976e1aa3d282df399fcbcb144 (patch)
treed6ed8bb427139c4aacc27d87b1ebd62f47f078ed /compiler/rustc_hir_analysis/src
parent816383c60dda68cf225164bae07f6b597261b4ab (diff)
downloadrust-a2051dd578f70e4976e1aa3d282df399fcbcb144.tar.gz
rust-a2051dd578f70e4976e1aa3d282df399fcbcb144.zip
Optimize some `alloc_from_iter` call sites.
There's no need to collect an iterator into a `Vec`, or to call
`into_iter` at the call sites.
Diffstat (limited to 'compiler/rustc_hir_analysis/src')
-rw-r--r--compiler/rustc_hir_analysis/src/variance/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_hir_analysis/src/variance/mod.rs b/compiler/rustc_hir_analysis/src/variance/mod.rs
index 85e0000ab47..9fb39a0e93b 100644
--- a/compiler/rustc_hir_analysis/src/variance/mod.rs
+++ b/compiler/rustc_hir_analysis/src/variance/mod.rs
@@ -192,5 +192,5 @@ fn variance_of_opaque(tcx: TyCtxt<'_>, item_def_id: LocalDefId) -> &[ty::Varianc
             }
         }
     }
-    tcx.arena.alloc_from_iter(collector.variances.into_iter())
+    tcx.arena.alloc_from_iter(collector.variances)
 }