diff options
| author | ismailarilik <arilik.ismail@gmail.com> | 2024-10-02 08:25:55 +0300 |
|---|---|---|
| committer | ismailarilik <arilik.ismail@gmail.com> | 2024-10-02 08:28:45 +0300 |
| commit | 807e812077ff9d70840f14822ae6e0e9753bd1fb (patch) | |
| tree | c68011c0438b0fa3838828086669de0b24b13fdb /compiler/rustc_resolve/src/lib.rs | |
| parent | 1d71891c6b6dc0f8c27493e6e6026b6ba44664e0 (diff) | |
| download | rust-807e812077ff9d70840f14822ae6e0e9753bd1fb.tar.gz rust-807e812077ff9d70840f14822ae6e0e9753bd1fb.zip | |
Handle `rustc-hir-analysis` cases of `rustc::potential_query_instability` lint
Diffstat (limited to 'compiler/rustc_resolve/src/lib.rs')
| -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 b84408cd0cb..0c1a0038f9c 100644 --- a/compiler/rustc_resolve/src/lib.rs +++ b/compiler/rustc_resolve/src/lib.rs @@ -1188,7 +1188,7 @@ pub struct Resolver<'ra, 'tcx> { /// A list of proc macro LocalDefIds, written out in the order in which /// they are declared in the static array generated by proc_macro_harness. proc_macros: Vec<NodeId>, - confused_type_with_std_module: FxHashMap<Span, Span>, + confused_type_with_std_module: FxIndexMap<Span, Span>, /// Whether lifetime elision was successful. lifetime_elision_allowed: FxHashSet<NodeId>, |
