about summary refs log tree commit diff
path: root/compiler/rustc_resolve/src/lib.rs
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2025-08-19 11:07:38 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2025-08-22 16:52:16 +0300
commitb82b947a5c6ed8a8bdb155b99298e9e79c93238c (patch)
treefe0b19d19e81529bf5ba65c654936ad968356466 /compiler/rustc_resolve/src/lib.rs
parent774d96a29fb30b072590ce19928649b8ea5a2697 (diff)
downloadrust-b82b947a5c6ed8a8bdb155b99298e9e79c93238c.tar.gz
rust-b82b947a5c6ed8a8bdb155b99298e9e79c93238c.zip
resolve: Remove `Module` from `ScopeSet::Late`
It can be passed in a more usual way through `ParentScope`

Diffstat (limited to 'compiler/rustc_resolve/src/lib.rs')
-rw-r--r--compiler/rustc_resolve/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_resolve/src/lib.rs b/compiler/rustc_resolve/src/lib.rs
index 2063c46124c..bb99bad6908 100644
--- a/compiler/rustc_resolve/src/lib.rs
+++ b/compiler/rustc_resolve/src/lib.rs
@@ -160,7 +160,7 @@ enum ScopeSet<'ra> {
     Macro(MacroKind),
     /// All scopes with the given namespace, used for partially performing late resolution.
     /// The node id enables lints and is used for reporting them.
-    Late(Namespace, Module<'ra>, Option<NodeId>),
+    Late(Namespace, Option<NodeId>),
 }
 
 /// Everything you need to know about a name's location to resolve it.