diff options
| author | Miguel Guarniz <mi9uel9@gmail.com> | 2022-05-07 16:35:38 -0400 |
|---|---|---|
| committer | Miguel Guarniz <mi9uel9@gmail.com> | 2022-05-13 11:46:06 -0400 |
| commit | f975d0511690c1dabe2e9df0dde189b90bec587f (patch) | |
| tree | 46ec1aef093ff11af1d3211fd3fe5ed642bb1d1b /compiler/rustc_incremental/src | |
| parent | 7e44078e9a12179b17a357da7e06c353036f68b9 (diff) | |
| download | rust-f975d0511690c1dabe2e9df0dde189b90bec587f.tar.gz rust-f975d0511690c1dabe2e9df0dde189b90bec587f.zip | |
rename visit item-like methods
Signed-off-by: Miguel Guarniz <mi9uel9@gmail.com>
Diffstat (limited to 'compiler/rustc_incremental/src')
| -rw-r--r-- | compiler/rustc_incremental/src/assert_dep_graph.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_incremental/src/assert_dep_graph.rs b/compiler/rustc_incremental/src/assert_dep_graph.rs index 7cddd10203e..a89b9eafaa6 100644 --- a/compiler/rustc_incremental/src/assert_dep_graph.rs +++ b/compiler/rustc_incremental/src/assert_dep_graph.rs @@ -75,7 +75,7 @@ pub fn assert_dep_graph(tcx: TyCtxt<'_>) { let mut visitor = IfThisChanged { tcx, if_this_changed: vec![], then_this_would_need: vec![] }; visitor.process_attrs(hir::CRATE_HIR_ID); - tcx.hir().visit_all_item_likes(&mut visitor); + tcx.hir().deep_visit_all_item_likes(&mut visitor); (visitor.if_this_changed, visitor.then_this_would_need) }; |
