diff options
| author | The Miri Cronjob Bot <miri@cron.bot> | 2025-04-07 05:24:10 +0000 |
|---|---|---|
| committer | The Miri Cronjob Bot <miri@cron.bot> | 2025-04-07 05:24:10 +0000 |
| commit | 2eb7791a1bc72b5d2357d0ee8be7e1ece5dc26c5 (patch) | |
| tree | 5f316fbcf48a556c06e14f8b34c46880f5b4c2aa /compiler/rustc_data_structures/src | |
| parent | fa06e723adb8ad4a4cc995b2fccfccc7caf80bff (diff) | |
| parent | 25a615bf829b9f6d6f22da537e3851043f92e5f2 (diff) | |
| download | rust-2eb7791a1bc72b5d2357d0ee8be7e1ece5dc26c5.tar.gz rust-2eb7791a1bc72b5d2357d0ee8be7e1ece5dc26c5.zip | |
Merge from rustc
Diffstat (limited to 'compiler/rustc_data_structures/src')
| -rw-r--r-- | compiler/rustc_data_structures/src/fx.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_data_structures/src/fx.rs b/compiler/rustc_data_structures/src/fx.rs index 80e72250470..f0db9623b67 100644 --- a/compiler/rustc_data_structures/src/fx.rs +++ b/compiler/rustc_data_structures/src/fx.rs @@ -9,6 +9,8 @@ pub type FxIndexSet<V> = indexmap::IndexSet<V, BuildHasherDefault<FxHasher>>; pub type IndexEntry<'a, K, V> = indexmap::map::Entry<'a, K, V>; pub type IndexOccupiedEntry<'a, K, V> = indexmap::map::OccupiedEntry<'a, K, V>; +pub use indexmap::set::MutableValues; + #[macro_export] macro_rules! define_id_collections { ($map_name:ident, $set_name:ident, $entry_name:ident, $key:ty) => { |
