We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90a273b commit 6192246Copy full SHA for 6192246
src/bootstrap/tool.rs
@@ -286,7 +286,6 @@ macro_rules! bootstrap_tool {
286
$name:ident, $path:expr, $tool_name:expr
287
$(,is_external_tool = $external:expr)*
288
$(,is_unstable_tool = $unstable:expr)*
289
- $(,features = $features:expr)*
290
;
291
)+) => {
292
#[derive(Copy, PartialEq, Eq, Clone)]
@@ -349,12 +348,7 @@ macro_rules! bootstrap_tool {
349
348
} else {
350
SourceType::InTree
351
},
352
- extra_features: {
353
- // FIXME(#60643): avoid this lint by using `_`
354
- let mut _tmp = Vec::new();
355
- $(_tmp.extend($features);)*
356
- _tmp
357
- },
+ extra_features: vec![],
358
}).expect("expected to build -- essential tool")
359
}
360
0 commit comments