mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 12:57:38 +03:00
Eliminate use of ref keyword
This commit is contained in:
parent
60d01a297f
commit
d9808369cf
1 changed files with 1 additions and 1 deletions
|
@ -316,7 +316,7 @@ fn apply_args(cmd: &mut Command, args: &Expand, color: &Coloring, outfile: &Path
|
|||
match cargo_metadata(args.manifest_path.as_deref()) {
|
||||
Ok(cargo_metadata) => {
|
||||
if let Some(root_package) = cargo_metadata.root_package() {
|
||||
if let Some(ref default_run) = root_package.default_run {
|
||||
if let Some(default_run) = &root_package.default_run {
|
||||
line.arg("--bin");
|
||||
line.arg(default_run);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue