about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src
diff options
context:
space:
mode:
authordianqk <dianqk@dianqk.net>2025-03-24 16:55:24 +0800
committerdianqk <dianqk@dianqk.net>2025-04-02 19:58:35 +0800
commit7830406df1232c59f82d870c218901b8643701bb (patch)
tree70cf373018301cccd707f80807ecb2516c01cb7b /compiler/rustc_data_structures/src
parent84af55679131e5074b7236fbdd98b12e9012b94e (diff)
downloadrust-7830406df1232c59f82d870c218901b8643701bb.tar.gz
rust-7830406df1232c59f82d870c218901b8643701bb.zip
Invalidate all dereferences for non-local assignments
Diffstat (limited to 'compiler/rustc_data_structures/src')
-rw-r--r--compiler/rustc_data_structures/src/fx.rs2
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) => {