We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
HashMap::get_many_mut
1 parent 885278b commit 6b7b547Copy full SHA for 6b7b547
compiler/rustc_session/src/config/cfg.rs
@@ -421,7 +421,7 @@ impl CheckCfg {
421
Some(values_target_os),
422
Some(values_target_pointer_width),
423
Some(values_target_vendor),
424
- ] = self.expecteds.get_many_mut(VALUES)
+ ] = self.expecteds.get_disjoint_mut(VALUES)
425
else {
426
panic!("unable to get all the check-cfg values buckets");
427
};
compiler/rustc_session/src/lib.rs
@@ -2,7 +2,6 @@
2
#![allow(internal_features)]
3
#![feature(iter_intersperse)]
4
#![feature(let_chains)]
5
-#![feature(map_many_mut)]
6
#![feature(rustc_attrs)]
7
#![warn(unreachable_pub)]
8
// tidy-alphabetical-end
0 commit comments