Skip to content

Commit f2d5ebe

Browse files
author
Ariel Ben-Yehuda
committed
sacrifice a few bytes for the euv demon
1 parent 9699adc commit f2d5ebe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc/middle/expr_use_visitor.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ impl OverloadedCallType {
244244
// can just use the tcx as the typer.
245245
//
246246
// FIXME(stage0): the :'t here is probably only important for stage0
247-
pub struct ExprUseVisitor<'d, 't, 'a: 't, 'tcx:'a+'d+'t> {
247+
pub struct ExprUseVisitor<'d, 't, 'a: 't, 'tcx:'a+'d> {
248248
typer: &'t infer::InferCtxt<'a, 'tcx>,
249249
mc: mc::MemCategorizationContext<'t, 'a, 'tcx>,
250250
delegate: &'d mut Delegate<'tcx>,
@@ -278,7 +278,7 @@ enum PassArgs {
278278
impl<'d,'t,'a,'tcx> ExprUseVisitor<'d,'t,'a,'tcx> {
279279
pub fn new(delegate: &'d mut Delegate<'tcx>,
280280
typer: &'t infer::InferCtxt<'a, 'tcx>)
281-
-> ExprUseVisitor<'d,'t,'a,'tcx>
281+
-> ExprUseVisitor<'d,'t,'a,'tcx> where 'tcx:'a
282282
{
283283
ExprUseVisitor {
284284
typer: typer,

0 commit comments

Comments
 (0)