Skip to content

Commit fd8274a

Browse files
committed
Use better iter() semantics to collect cfg flags.
1 parent e100ee9 commit fd8274a

File tree

1 file changed

+3
-5
lines changed
  • src/cargo/ops/cargo_rustc

1 file changed

+3
-5
lines changed

src/cargo/ops/cargo_rustc/mod.rs

+3-5
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,9 @@ pub fn compile_targets<'a, 'cfg: 'a>(ws: &Workspace<'cfg>,
143143
}
144144

145145
if let Some(feats) = cx.resolve.features(&unit.pkg.package_id()) {
146-
for feat in feats.iter() {
147-
cx.compilation.cfgs.entry(unit.pkg.package_id().clone())
148-
.or_insert(HashSet::new())
149-
.insert(format!("feature=\"{}\"", feat));
150-
}
146+
cx.compilation.cfgs.entry(unit.pkg.package_id().clone())
147+
.or_insert(HashSet::new())
148+
.extend(feats.iter().map(|feat| format!("feature=\"{}\"", feat)));
151149
}
152150
}
153151

0 commit comments

Comments
 (0)