Skip to content

Commit 77b0845

Browse files
committed
fix long lines
1 parent 1983e3d commit 77b0845

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/rustc/middle/trans/base.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1721,7 +1721,8 @@ fn trans_class_ctor(ccx: @crate_ctxt, path: path, decl: ast::fn_decl,
17211721
let mut bcx_top = top_scope_block(fcx, body.info());
17221722
let lltop = bcx_top.llbb;
17231723
let arg_tys = ty::ty_fn_args(node_id_type(bcx_top, ctor_id));
1724-
bcx_top = copy_args_to_allocas(fcx, bcx_top, decl.inputs, raw_llargs, arg_tys);
1724+
bcx_top = copy_args_to_allocas(fcx, bcx_top, decl.inputs,
1725+
raw_llargs, arg_tys);
17251726

17261727
// Create a temporary for `self` that we will return at the end
17271728
let selfdatum = datum::scratch_datum(bcx_top, rslt_ty, true);

src/rustc/middle/trans/type_use.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ use syntax::ast_map;
2727
use common::*;
2828

2929
type type_uses = uint; // Bitmask
30-
const use_repr: uint = 1u; /* Dependency on size/alignment/mode and
31-
take/drop glue */
32-
const use_tydesc: uint = 2u; /* Takes the tydesc, or compares */
30+
const use_repr: uint = 1u; /* Dependency on size/alignment/mode and
31+
take/drop glue */
32+
const use_tydesc: uint = 2u; /* Takes the tydesc, or compares */
3333

3434
type ctx = {ccx: @crate_ctxt,
3535
uses: ~[mut type_uses]};

0 commit comments

Comments
 (0)