Skip to content

Commit

Permalink
Auto merge of #9617 - danieleades:refactor/useless-conversions, r=ehuss
Browse files Browse the repository at this point in the history
remove useless conversions
  • Loading branch information
bors committed Aug 6, 2021
2 parents e928b62 + a6d3fb0 commit bcd7fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cargo/core/compiler/output_depinfo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ fn add_deps_for_unit(
// The paths we have saved from the unit are of arbitrary relativeness and may be
// relative to the crate root of the dependency.
let path = unit.pkg.root().join(path);
deps.insert(path.into());
deps.insert(path);
}
}
}
Expand Down

0 comments on commit bcd7fba

Please sign in to comment.