Skip to content

Commit 1bf3007

Browse files
committed
Fix clippy warning
1 parent cb23f5d commit 1bf3007

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
@@ -85,7 +85,7 @@ impl GccOutput {
8585
std::fs::create_dir_all(&target_dir),
8686
format!("Cannot create target dir {} for libgccjit", target_dir.display())
8787
);
88-
let dst = target_dir.join(&target_filename);
88+
let dst = target_dir.join(target_filename);
8989
builder.copy_link(&actual_libgccjit_path, &dst, FileType::NativeLibrary);
9090
}
9191
}

0 commit comments

Comments
 (0)