diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2025-07-30 08:38:52 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2025-07-31 11:50:23 +1000 |
| commit | e83c8cb26cd068cb23ca079d2992a08bed240385 (patch) | |
| tree | 9584bf0b895896945bae92b372d81772dbbacbb3 /compiler/rustc_middle/src | |
| parent | 2bf10de494a4ee9cbd5176e00cca8830d778669a (diff) | |
| download | rust-e83c8cb26cd068cb23ca079d2992a08bed240385.tar.gz rust-e83c8cb26cd068cb23ca079d2992a08bed240385.zip | |
Move `ResolverOutputs` out of `rustc_middle`.
It's not used in `rustc_middle`, and `rustc_resolve` is a better place for it.
Diffstat (limited to 'compiler/rustc_middle/src')
| -rw-r--r-- | compiler/rustc_middle/src/ty/mod.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler/rustc_middle/src/ty/mod.rs b/compiler/rustc_middle/src/ty/mod.rs index bb70c61cd14..a0a6e3bab24 100644 --- a/compiler/rustc_middle/src/ty/mod.rs +++ b/compiler/rustc_middle/src/ty/mod.rs @@ -170,11 +170,6 @@ mod visit; // Data types -pub struct ResolverOutputs { - pub global_ctxt: ResolverGlobalCtxt, - pub ast_lowering: ResolverAstLowering, -} - #[derive(Debug, HashStable)] pub struct ResolverGlobalCtxt { pub visibilities_for_hashing: Vec<(LocalDefId, Visibility)>, |
