We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df8fb4e commit ba45f0bCopy full SHA for ba45f0b
2 files changed
compiler/rustc_middle/src/query/plumbing.rs
@@ -6,7 +6,6 @@ use rustc_hir::hir_id::OwnerId;
6
use rustc_macros::HashStable;
7
use rustc_query_system::HandleCycleError;
8
use rustc_query_system::dep_graph::{DepNodeIndex, SerializedDepNodeIndex};
9
-pub(crate) use rustc_query_system::query::QueryJobId;
10
use rustc_query_system::query::*;
11
use rustc_span::{ErrorGuaranteed, Span};
12
pub use sealed::IntoQueryParam;
compiler/rustc_query_system/src/query/job.rs
@@ -195,6 +195,8 @@ struct QueryWaiter<I> {
195
query: Option<QueryInclusion>,
196
thread_id: ThreadId,
197
condvar: Condvar,
198
+ // remove this after making sure PR it's ok to do
199
+ #[allow(dead_code)]
200
span: Span,
201
cycle: Mutex<Option<CycleError<I>>>,
202
}
0 commit comments