From d8c29b3e28b3f22a3ec6e8efc416b53cc044a882 Mon Sep 17 00:00:00 2001 From: Oli Scherer Date: Thu, 27 Jan 2022 15:06:33 +0000 Subject: [PATCH] Simplify diff --- compiler/rustc_infer/src/infer/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/rustc_infer/src/infer/mod.rs b/compiler/rustc_infer/src/infer/mod.rs index 15ce690479b..fa17a2d66f1 100644 --- a/compiler/rustc_infer/src/infer/mod.rs +++ b/compiler/rustc_infer/src/infer/mod.rs @@ -190,10 +190,10 @@ pub struct InferCtxtInner<'tcx> { /// that all type inference variables have been bound and so forth. region_obligations: Vec<(hir::HirId, RegionObligation<'tcx>)>, + undo_log: InferCtxtUndoLogs<'tcx>, + /// Caches for opaque type inference. pub opaque_type_storage: OpaqueTypeStorage<'tcx>, - - undo_log: InferCtxtUndoLogs<'tcx>, } impl<'tcx> InferCtxtInner<'tcx> {