Skip to content

Commit 8c677b5

Browse files
committed
Fix clippy warning
1 parent 4796e49 commit 8c677b5

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

0 commit comments

Comments
 (0)