Skip to content

Commit 2255eda

Browse files
committed
rustc: Fix long line
1 parent edf8245 commit 2255eda

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/comp/middle/trans.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,8 @@ fn add_clean(&@block_ctxt cx, ValueRef val, ty::t ty) {
282282
find_scope_cx(cx).cleanups += ~[clean(bind drop_slot(_, val, ty))];
283283
}
284284
fn add_clean_temp(&@block_ctxt cx, ValueRef val, ty::t ty) {
285-
find_scope_cx(cx).cleanups += ~[clean_temp(val, bind drop_ty(_, val, ty))];
285+
find_scope_cx(cx).cleanups += ~[clean_temp(val,
286+
bind drop_ty(_, val, ty))];
286287
}
287288

288289
// Note that this only works for temporaries. We should, at some point, move

0 commit comments

Comments
 (0)