Use iter()
instead of iter_mut()
in one place.
This commit is contained in:
parent
142075a9fb
commit
22d4c798ec
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue