about summary refs log tree commit diff
path: root/compiler/rustc_hir_analysis/src/check/inherited.rs
diff options
context:
space:
mode:
authorlcnr <rust@lcnr.de>2022-10-03 13:49:31 +0200
committerlcnr <rust@lcnr.de>2022-10-03 13:53:17 +0200
commit550715d74da9de33dfb29a02148750fff9b46f49 (patch)
tree201f346c32fc35b2baa2076a2054d031fd72a0cc /compiler/rustc_hir_analysis/src/check/inherited.rs
parent6b139c5b3e2bad623bdbd8583bc4f2b0f763113a (diff)
downloadrust-550715d74da9de33dfb29a02148750fff9b46f49.tar.gz
rust-550715d74da9de33dfb29a02148750fff9b46f49.zip
`HirId` for `deferred_transmute_checks`
Diffstat (limited to 'compiler/rustc_hir_analysis/src/check/inherited.rs')
-rw-r--r--compiler/rustc_hir_analysis/src/check/inherited.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_hir_analysis/src/check/inherited.rs b/compiler/rustc_hir_analysis/src/check/inherited.rs
index 37c830d4e38..2546227e138 100644
--- a/compiler/rustc_hir_analysis/src/check/inherited.rs
+++ b/compiler/rustc_hir_analysis/src/check/inherited.rs
@@ -55,7 +55,7 @@ pub struct Inherited<'a, 'tcx> {
 
     pub(super) deferred_cast_checks: RefCell<Vec<super::cast::CastCheck<'tcx>>>,
 
-    pub(super) deferred_transmute_checks: RefCell<Vec<(Ty<'tcx>, Ty<'tcx>, Span)>>,
+    pub(super) deferred_transmute_checks: RefCell<Vec<(Ty<'tcx>, Ty<'tcx>, hir::HirId)>>,
 
     pub(super) deferred_asm_checks: RefCell<Vec<(&'tcx hir::InlineAsm<'tcx>, hir::HirId)>>,