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 4240a0b commit 5d8161cCopy full SHA for 5d8161c
compiler/rustc_middle/src/dep_graph/mod.rs
@@ -94,7 +94,7 @@ impl<'tcx> DepContext for TyCtxt<'tcx> {
94
}
95
96
#[inline]
97
- fn dep_kind_info(&self, dep_kind: DepKind) -> &DepKindStruct<'tcx> {
98
- &self.query_kinds[dep_kind as usize]
+ fn dep_kind_info(&self, dk: DepKind) -> &DepKindStruct<'tcx> {
+ &self.query_kinds[dk as usize]
99
100
0 commit comments