Skip to content

Commit

Permalink
Rollup merge of #72741 - tmiasko:unused-mut, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
Remove unused mut from long-linker-command-lines test
  • Loading branch information
JohnTitor authored May 30, 2020
2 parents 047b3bd + 02cc593 commit 990195f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ fn main() {
}

let linker_args = read_linker_args(&ok);
for mut arg in linker_args.split('S') {
for arg in linker_args.split('S') {
expected_libs.remove(arg);
}

Expand Down

0 comments on commit 990195f

Please sign in to comment.