diff options
| author | lcnr <rust@lcnr.de> | 2022-09-26 13:00:29 +0200 |
|---|---|---|
| committer | lcnr <rust@lcnr.de> | 2022-09-27 10:37:23 +0200 |
| commit | 1fc86a63f451b81606e4787692517dc613f333db (patch) | |
| tree | 2b4319f9f442c29fb6be16d4fd98fd27637e8f13 /compiler/rustc_privacy/src/lib.rs | |
| parent | de0b511daa91469dd251e736fb8914d2360ac0ec (diff) | |
| download | rust-1fc86a63f451b81606e4787692517dc613f333db.tar.gz rust-1fc86a63f451b81606e4787692517dc613f333db.zip | |
rustc_typeck to rustc_hir_analysis
Diffstat (limited to 'compiler/rustc_privacy/src/lib.rs')
| -rw-r--r-- | compiler/rustc_privacy/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_privacy/src/lib.rs b/compiler/rustc_privacy/src/lib.rs index 41d5f54b366..7ab07a671c4 100644 --- a/compiler/rustc_privacy/src/lib.rs +++ b/compiler/rustc_privacy/src/lib.rs @@ -1207,7 +1207,7 @@ impl<'tcx> Visitor<'tcx> for TypePrivacyVisitor<'tcx> { // Types in signatures. // FIXME: This is very ineffective. Ideally each HIR type should be converted // into a semantic type only once and the result should be cached somehow. - if self.visit(rustc_typeck::hir_ty_to_ty(self.tcx, hir_ty)).is_break() { + if self.visit(rustc_hir_analysis::hir_ty_to_ty(self.tcx, hir_ty)).is_break() { return; } } @@ -1236,7 +1236,7 @@ impl<'tcx> Visitor<'tcx> for TypePrivacyVisitor<'tcx> { if self.maybe_typeck_results.is_none() { // Avoid calling `hir_trait_to_predicates` in bodies, it will ICE. // The traits' privacy in bodies is already checked as a part of trait object types. - let bounds = rustc_typeck::hir_trait_to_predicates( + let bounds = rustc_hir_analysis::hir_trait_to_predicates( self.tcx, trait_ref, // NOTE: This isn't really right, but the actual type doesn't matter here. It's |
