about summary refs log tree commit diff
path: root/compiler/rustc_interface/src
diff options
context:
space:
mode:
authorThe Miri Conjob Bot <miri@cron.bot>2024-02-29 05:02:18 +0000
committerThe Miri Conjob Bot <miri@cron.bot>2024-02-29 05:02:18 +0000
commit1b41d791f94c7f4b478a317667405ba7e17aa501 (patch)
tree18ad46d4d5135068609a49a284100effdd5d6724 /compiler/rustc_interface/src
parentf43c07c037f64791c6d2a7c69088bd7312454bf2 (diff)
parent607bf653c2bed1ec3f7979d9511f3c9cef604bc3 (diff)
downloadrust-1b41d791f94c7f4b478a317667405ba7e17aa501.tar.gz
rust-1b41d791f94c7f4b478a317667405ba7e17aa501.zip
Merge from rustc
Diffstat (limited to 'compiler/rustc_interface/src')
-rw-r--r--compiler/rustc_interface/src/callbacks.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_interface/src/callbacks.rs b/compiler/rustc_interface/src/callbacks.rs
index 8c7e49b51f9..f44ae705a3c 100644
--- a/compiler/rustc_interface/src/callbacks.rs
+++ b/compiler/rustc_interface/src/callbacks.rs
@@ -9,7 +9,7 @@
 //! The functions in this file should fall back to the default set in their
 //! origin crate when the `TyCtxt` is not present in TLS.
 
-use rustc_errors::{Diagnostic, TRACK_DIAGNOSTIC};
+use rustc_errors::{DiagInner, TRACK_DIAGNOSTIC};
 use rustc_middle::dep_graph::{DepNodeExt, TaskDepsRef};
 use rustc_middle::ty::tls;
 use rustc_query_system::dep_graph::dep_node::default_dep_kind_debug;
@@ -29,7 +29,7 @@ fn track_span_parent(def_id: rustc_span::def_id::LocalDefId) {
 /// This is a callback from `rustc_errors` as it cannot access the implicit state
 /// in `rustc_middle` otherwise. It is used when diagnostic messages are
 /// emitted and stores them in the current query, if there is one.
-fn track_diagnostic(diagnostic: Diagnostic, f: &mut dyn FnMut(Diagnostic)) {
+fn track_diagnostic(diagnostic: DiagInner, f: &mut dyn FnMut(DiagInner)) {
     tls::with_context_opt(|icx| {
         if let Some(icx) = icx {
             if let Some(diagnostics) = icx.diagnostics {