From 91cd57e87284009ea3af6c3366d9a38f4770849b Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Sun, 8 Jan 2012 15:32:03 -0800 Subject: [PATCH] correct long line --- src/comp/middle/trans_impl.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/comp/middle/trans_impl.rs b/src/comp/middle/trans_impl.rs index f4d9e58e427e..6b550a76c86e 100644 --- a/src/comp/middle/trans_impl.rs +++ b/src/comp/middle/trans_impl.rs @@ -113,8 +113,8 @@ fn trans_param_callee(bcx: @block_ctxt, fld_expr: @ast::expr, } // Method callee where the dict comes from a boxed iface -fn trans_iface_callee(bcx: @block_ctxt, fld_expr: @ast::expr, base: @ast::expr, - n_method: uint) +fn trans_iface_callee(bcx: @block_ctxt, fld_expr: @ast::expr, + base: @ast::expr, n_method: uint) -> lval_maybe_callee { let tcx = bcx_tcx(bcx); let {bcx, val} = trans_temp_expr(bcx, base);