From f2d5ebeae94c78799b4e4d2f8fd5c526df87e949 Mon Sep 17 00:00:00 2001 From: Ariel Ben-Yehuda Date: Wed, 30 Sep 2015 00:51:12 +0300 Subject: [PATCH] sacrifice a few bytes for the euv demon --- src/librustc/middle/expr_use_visitor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc/middle/expr_use_visitor.rs b/src/librustc/middle/expr_use_visitor.rs index 9a5b21be7289..13e8fddf7791 100644 --- a/src/librustc/middle/expr_use_visitor.rs +++ b/src/librustc/middle/expr_use_visitor.rs @@ -244,7 +244,7 @@ impl OverloadedCallType { // can just use the tcx as the typer. // // FIXME(stage0): the :'t here is probably only important for stage0 -pub struct ExprUseVisitor<'d, 't, 'a: 't, 'tcx:'a+'d+'t> { +pub struct ExprUseVisitor<'d, 't, 'a: 't, 'tcx:'a+'d> { typer: &'t infer::InferCtxt<'a, 'tcx>, mc: mc::MemCategorizationContext<'t, 'a, 'tcx>, delegate: &'d mut Delegate<'tcx>, @@ -278,7 +278,7 @@ enum PassArgs { impl<'d,'t,'a,'tcx> ExprUseVisitor<'d,'t,'a,'tcx> { pub fn new(delegate: &'d mut Delegate<'tcx>, typer: &'t infer::InferCtxt<'a, 'tcx>) - -> ExprUseVisitor<'d,'t,'a,'tcx> + -> ExprUseVisitor<'d,'t,'a,'tcx> where 'tcx:'a { ExprUseVisitor { typer: typer,