Skip to content

Commit 5a22489

Browse files
committed
avoid an unnecessary 'let _ ='
1 parent 1cd0fbb commit 5a22489

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ impl<'a> SysrootBuilder<'a> {
360360

361361
// Remove any patches that we don't need
362362
for krate in unneeded_patches {
363-
let _ = repo_patches.remove(*krate);
363+
repo_patches.remove(*krate);
364364
}
365365

366366
// Remap paths to be relative to the source directory.

0 commit comments

Comments
 (0)