diff options
| author | Jason Newcomb <jsnewcomb@pm.me> | 2024-02-24 15:22:42 -0500 |
|---|---|---|
| committer | Jason Newcomb <jsnewcomb@pm.me> | 2024-03-05 12:38:03 -0500 |
| commit | 5abfb3775da61ed9059c6efa3f9bec5b86b67c7a (patch) | |
| tree | 9fc06344e792df437f0016b8d0c60a0ff854cf0a /compiler/rustc_lint | |
| parent | c7beecf3e3cef7a8226a99aec4e4f6bfc114ba8e (diff) | |
| download | rust-5abfb3775da61ed9059c6efa3f9bec5b86b67c7a.tar.gz rust-5abfb3775da61ed9059c6efa3f9bec5b86b67c7a.zip | |
Move visitor utils to `rustc_ast_ir`
Diffstat (limited to 'compiler/rustc_lint')
| -rw-r--r-- | compiler/rustc_lint/src/early.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_lint/src/early.rs b/compiler/rustc_lint/src/early.rs index 0862204d88e..d78ec8c0dd3 100644 --- a/compiler/rustc_lint/src/early.rs +++ b/compiler/rustc_lint/src/early.rs @@ -17,8 +17,8 @@ use crate::context::{EarlyContext, LintContext, LintStore}; use crate::passes::{EarlyLintPass, EarlyLintPassObject}; use rustc_ast::ptr::P; -use rustc_ast::visit::{self as ast_visit, Visitor}; -use rustc_ast::{self as ast, walk_list, HasAttrs}; +use rustc_ast::visit::{self as ast_visit, walk_list, Visitor}; +use rustc_ast::{self as ast, HasAttrs}; use rustc_data_structures::stack::ensure_sufficient_stack; use rustc_feature::Features; use rustc_middle::ty::RegisteredTools; |
