remove redundant clones
(clippy::redundant_clone)
This commit is contained in:
parent
683d1bcd40
commit
be28b6235e
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ pub fn opts() -> TargetOptions {
|
|||
"-lmingw32".to_string(),
|
||||
];
|
||||
late_link_args.insert(LinkerFlavor::Gcc, mingw_libs.clone());
|
||||
late_link_args.insert(LinkerFlavor::Lld(LldFlavor::Ld), mingw_libs.clone());
|
||||
late_link_args.insert(LinkerFlavor::Lld(LldFlavor::Ld), mingw_libs);
|
||||
|
||||
TargetOptions {
|
||||
executables: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue