Skip to content

Commit 843e943

Browse files
committed
rustc: Fix long lines in typeck.rs
1 parent 23d3b0e commit 843e943

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/comp/middle/typeck.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2079,7 +2079,8 @@ fn check_expr(&@fn_ctxt fcx, &@ast::expr expr) -> @ast::expr {
20792079

20802080
auto e = ast::expr_path(pth, triv_ann(ast::ann_tag(old_ann),
20812081
tpt._1));
2082-
write_type_only(fcx.ccx.node_types, ast::ann_tag(old_ann), tpt._1);
2082+
write_type_only(fcx.ccx.node_types,
2083+
ast::ann_tag(old_ann), tpt._1);
20832084
ret @fold::respan[ast::expr_](expr.span, e);
20842085
}
20852086

0 commit comments

Comments
 (0)