From 2255eda6254e10582cd879d33f19159fe803cb23 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Thu, 7 Jul 2011 18:41:54 -0700 Subject: [PATCH] rustc: Fix long line --- src/comp/middle/trans.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/comp/middle/trans.rs b/src/comp/middle/trans.rs index 431f75482d75..7ea3d59c7e19 100644 --- a/src/comp/middle/trans.rs +++ b/src/comp/middle/trans.rs @@ -282,7 +282,8 @@ fn add_clean(&@block_ctxt cx, ValueRef val, ty::t ty) { find_scope_cx(cx).cleanups += ~[clean(bind drop_slot(_, val, ty))]; } fn add_clean_temp(&@block_ctxt cx, ValueRef val, ty::t ty) { - find_scope_cx(cx).cleanups += ~[clean_temp(val, bind drop_ty(_, val, ty))]; + find_scope_cx(cx).cleanups += ~[clean_temp(val, + bind drop_ty(_, val, ty))]; } // Note that this only works for temporaries. We should, at some point, move