Skip to content

Commit 2125647

Browse files
committed
Fix clippy warning
1 parent 3ed2b1b commit 2125647

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
@@ -80,7 +80,7 @@ impl GccOutput {
8080
std::fs::create_dir_all(&target_dir),
8181
format!("Cannot create target dir {} for libgccjit", target_dir.display())
8282
);
83-
let dst = target_dir.join(&target_filename);
83+
let dst = target_dir.join(target_filename);
8484
builder.copy_link(&actual_libgccjit_path, &dst, FileType::NativeLibrary);
8585
}
8686
}

0 commit comments

Comments
 (0)