diff options
| author | lcnr <rust@lcnr.de> | 2022-10-03 13:49:31 +0200 | 
|---|---|---|
| committer | lcnr <rust@lcnr.de> | 2022-10-03 13:53:17 +0200 | 
| commit | 550715d74da9de33dfb29a02148750fff9b46f49 (patch) | |
| tree | 201f346c32fc35b2baa2076a2054d031fd72a0cc /compiler/rustc_hir_analysis/src/check/inherited.rs | |
| parent | 6b139c5b3e2bad623bdbd8583bc4f2b0f763113a (diff) | |
| download | rust-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.rs | 2 | 
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)>>,  | 
