diff options
| author | ismailarilik <arilik.ismail@gmail.com> | 2025-05-05 16:36:04 +0300 |
|---|---|---|
| committer | ismailarilik <arilik.ismail@gmail.com> | 2025-05-05 16:36:04 +0300 |
| commit | 2426dbcde20d1c34a50ff1cce9df6215b66e3d1b (patch) | |
| tree | 4d877eba13066000341e2bb269973405f554b04b /compiler/rustc_resolve/src | |
| parent | 1e008dd5d83e782ad37fc9cf6824733f824cc8cd (diff) | |
| download | rust-2426dbcde20d1c34a50ff1cce9df6215b66e3d1b.tar.gz rust-2426dbcde20d1c34a50ff1cce9df6215b66e3d1b.zip | |
Handle rustc_middle cases of rustc::potential_query_instability lint
Diffstat (limited to 'compiler/rustc_resolve/src')
| -rw-r--r-- | compiler/rustc_resolve/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_resolve/src/lib.rs b/compiler/rustc_resolve/src/lib.rs index 3ac66840d87..42f113959bd 100644 --- a/compiler/rustc_resolve/src/lib.rs +++ b/compiler/rustc_resolve/src/lib.rs @@ -1104,7 +1104,7 @@ pub struct Resolver<'ra, 'tcx> { underscore_disambiguator: u32, /// Maps glob imports to the names of items actually imported. - glob_map: FxHashMap<LocalDefId, FxHashSet<Symbol>>, + glob_map: FxIndexMap<LocalDefId, FxIndexSet<Symbol>>, glob_error: Option<ErrorGuaranteed>, visibilities_for_hashing: Vec<(LocalDefId, ty::Visibility)>, used_imports: FxHashSet<NodeId>, |
