Skip to content

Commit 1fc8022

Browse files
committed
Long lines
1 parent 4f3cc01 commit 1fc8022

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/librustc/middle/trans/inline.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ fn maybe_instantiate_inline(ccx: @crate_ctxt, fn_id: ast::def_id,
8686
let self_kind = match mth.self_ty.node {
8787
ast::sty_static => no_self,
8888
_ => {
89-
let self_ty = ty::node_id_to_type(ccx.tcx, mth.self_id);
89+
let self_ty = ty::node_id_to_type(ccx.tcx,
90+
mth.self_id);
9091
debug!("calling inline trans_fn with self_ty %s",
9192
ty_to_str(ccx.tcx, self_ty));
9293
match mth.self_ty.node {

0 commit comments

Comments
 (0)