Skip to content

Commit 64771ef

Browse files
author
Jon Gjengset
committed
Fix after merge
1 parent ba584a9 commit 64771ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cargo/core/compiler/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ use crate::core::{Feature, PackageId, Target};
5757
use crate::util::errors::{CargoResult, CargoResultExt, VerboseError};
5858
use crate::util::interning::InternedString;
5959
use crate::util::machine_message::{self, Message};
60-
use crate::util::{add_path_args, internal, profile};
60+
use crate::util::{add_path_args, internal, iter_join_onto, profile};
6161
use cargo_util::{paths, ProcessBuilder, ProcessError};
6262

6363
const RUSTDOC_CRATE_VERSION_FLAG: &str = "--crate-version";
@@ -702,7 +702,7 @@ fn add_cap_lints(bcx: &BuildContext<'_, '_>, unit: &Unit, cmd: &mut ProcessBuild
702702
fn add_allow_features(cx: &Context<'_, '_>, cmd: &mut ProcessBuilder) {
703703
if let Some(allow) = &cx.bcx.config.cli_unstable().allow_features {
704704
let mut arg = String::from("-Zallow-features=");
705-
let _ = util::iter_join_onto(&mut arg, allow, ",");
705+
let _ = iter_join_onto(&mut arg, allow, ",");
706706
cmd.arg(&arg);
707707
}
708708
}

0 commit comments

Comments
 (0)