diff options
| author | Brian Anderson <[email protected]> | 2011-05-13 20:06:02 -0400 |
|---|---|---|
| committer | Brian Anderson <[email protected]> | 2011-05-13 20:06:02 -0400 |
| commit | 843e9435ab5c83d4f255ee2ecd2fe5752ec2f715 (patch) | |
| tree | 6ea267fb004ec1825c77dba85f7b94c1199f3d70 /src | |
| parent | rustc: Get ann_to_type_params() on board the ann_to_ty_param_substs_opt_and_t... (diff) | |
| download | rust-843e9435ab5c83d4f255ee2ecd2fe5752ec2f715.tar.xz rust-843e9435ab5c83d4f255ee2ecd2fe5752ec2f715.zip | |
rustc: Fix long lines in typeck.rs
Diffstat (limited to 'src')
| -rw-r--r-- | src/comp/middle/typeck.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/comp/middle/typeck.rs b/src/comp/middle/typeck.rs index 4a8f5974..911dbd05 100644 --- a/src/comp/middle/typeck.rs +++ b/src/comp/middle/typeck.rs @@ -2079,7 +2079,8 @@ fn check_expr(&@fn_ctxt fcx, &@ast::expr expr) -> @ast::expr { auto e = ast::expr_path(pth, triv_ann(ast::ann_tag(old_ann), tpt._1)); - write_type_only(fcx.ccx.node_types, ast::ann_tag(old_ann), tpt._1); + write_type_only(fcx.ccx.node_types, + ast::ann_tag(old_ann), tpt._1); ret @fold::respan[ast::expr_](expr.span, e); } |