mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 08:13:41 +00:00
Use iter()
instead of iter_mut()
in one place.
This commit is contained in:
parent
142075a9fb
commit
22d4c798ec
@ -460,7 +460,7 @@ fn internalize_symbols<'tcx>(
|
||||
let single_codegen_unit = codegen_units.len() == 1;
|
||||
|
||||
if !single_codegen_unit {
|
||||
for cgu in codegen_units.iter_mut() {
|
||||
for cgu in codegen_units.iter() {
|
||||
for item in cgu.items().keys() {
|
||||
// If there is more than one codegen unit, we need to keep track
|
||||
// in which codegen units each monomorphization is placed.
|
||||
|
Loading…
Reference in New Issue
Block a user