about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src
diff options
context:
space:
mode:
author许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com>2025-04-07 12:37:32 +0800
committerGitHub <noreply@github.com>2025-04-07 12:37:32 +0800
commit30fb3d9da35ff8336aa327e5075c5a2b7c0d6c60 (patch)
tree2478093c3b93e98d9a90c99a012c6862eedd96f3 /compiler/rustc_data_structures/src
parent1ec36e12e86ec798d2d38efa074705a71e0dee47 (diff)
parent5a28e1e8de868757716d97aa0c0c1d7764122c32 (diff)
downloadrust-30fb3d9da35ff8336aa327e5075c5a2b7c0d6c60.tar.gz
rust-30fb3d9da35ff8336aa327e5075c5a2b7c0d6c60.zip
Merge pull request #2291 from rust-lang/rustc-pull
Rustc pull update
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) => {