diff options
| author | Ralf Jung <post@ralfj.de> | 2019-05-29 11:52:14 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2019-06-02 10:36:18 +0200 |
| commit | 222ed9f57118a2542a67d39e6df07152bac0b962 (patch) | |
| tree | 14882befd23a7d51f49fe953184ec8600af3d785 | |
| parent | 0f96dd51c584bf7b93155a41ae31dee7777f1508 (diff) | |
| download | rust-222ed9f57118a2542a67d39e6df07152bac0b962.tar.gz rust-222ed9f57118a2542a67d39e6df07152bac0b962.zip | |
fix indentation
| -rw-r--r-- | src/librustc_mir/interpret/eval_context.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/librustc_mir/interpret/eval_context.rs b/src/librustc_mir/interpret/eval_context.rs index 594802a0341..a6153bf055d 100644 --- a/src/librustc_mir/interpret/eval_context.rs +++ b/src/librustc_mir/interpret/eval_context.rs @@ -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. |
