diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2023-09-22 16:26:20 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2023-09-22 16:26:20 +0000 |
| commit | 2ba911c8329a4a8b6697cc6a25c02f0f06d58d8d (patch) | |
| tree | 7659337027d83c1b09500dbe664db0092e1f887c /compiler/rustc_interface/src/interface.rs | |
| parent | 9defc971f1e059e139e8719661560de4741a128e (diff) | |
| download | rust-2ba911c8329a4a8b6697cc6a25c02f0f06d58d8d.tar.gz rust-2ba911c8329a4a8b6697cc6a25c02f0f06d58d8d.zip | |
Have a single struct for queries and hook
Diffstat (limited to 'compiler/rustc_interface/src/interface.rs')
| -rw-r--r-- | compiler/rustc_interface/src/interface.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/interface.rs b/compiler/rustc_interface/src/interface.rs index a0f0b530bae..048d2259187 100644 --- a/compiler/rustc_interface/src/interface.rs +++ b/compiler/rustc_interface/src/interface.rs @@ -9,7 +9,8 @@ use rustc_data_structures::sync::Lrc; use rustc_errors::registry::Registry; use rustc_errors::{ErrorGuaranteed, Handler}; use rustc_lint::LintStore; -use rustc_middle::query::{ExternProviders, Providers}; +use rustc_middle::query::ExternProviders; +use rustc_middle::util::Providers; use rustc_middle::{bug, ty}; use rustc_parse::maybe_new_parser_from_source_str; use rustc_query_impl::QueryCtxt; |
