]> git.lizzy.rs Git - rust.git/commitdiff
fix indentation
authorRalf Jung <post@ralfj.de>
Wed, 29 May 2019 09:52:14 +0000 (11:52 +0200)
committerRalf Jung <post@ralfj.de>
Sun, 2 Jun 2019 08:36:18 +0000 (10:36 +0200)
src/librustc_mir/interpret/eval_context.rs

index 594802a03410ce14b2b50936b74a5bf3864c0864..a6153bf055d600a5223ae3c0cf2e6551d0afe6e8 100644 (file)
@@ -44,9 +44,9 @@ pub struct InterpretCx<'a, 'mir, 'tcx: 'a + 'mir, M: Machine<'a, 'mir, 'tcx>> {
 
     /// A cache for deduplicating vtables
     pub(super) vtables: FxHashMap<
-            (Ty<'tcx>, Option<ty::PolyExistentialTraitRef<'tcx>>),
-            Pointer<M::PointerTag>
-        >,
+        (Ty<'tcx>, Option<ty::PolyExistentialTraitRef<'tcx>>),
+        Pointer<M::PointerTag>
+    >,
 }
 
 /// A stack frame.