Skip to content

Commit 5ae7550

Browse files
committed
Remove mut
1 parent 8c677b5 commit 5ae7550

File tree

1 file changed

+1
-1
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+1
-1
lines changed

src/bootstrap/src/core/build_steps/gcc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ impl GccOutput {
4242
}
4343

4444
if let Some(ref path) = self.libgccjit {
45-
let mut target_filename = path.file_name().unwrap().to_str().unwrap().to_string();
45+
let target_filename = path.file_name().unwrap().to_str().unwrap().to_string();
4646

4747
// If we build libgccjit ourselves, then `self.libgccjit` can actually be a symlink.
4848
// In that case, we have to resolve it first, otherwise we'd create a symlink to a symlink,

0 commit comments

Comments
 (0)