Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
coreylowman committed Jun 28, 2024
1 parent e4a6d16 commit 4ff808b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ fn dynamic_linking(major: usize, minor: usize) {
)
});

for path in lib_candidates(&toolkit_root, major, minor) {
for path in lib_candidates(toolkit_root, major, minor) {
println!("cargo:rustc-link-search=native={}", path.display());
}

Expand All @@ -113,7 +113,7 @@ fn dynamic_linking(major: usize, minor: usize) {
)
});

for path in lib_candidates(&cudnn_root, major, minor) {
for path in lib_candidates(cudnn_root, major, minor) {
println!("cargo:rustc-link-search=native={}", path.display());
}
}
Expand Down

0 comments on commit 4ff808b

Please sign in to comment.