diff options
| author | Graydon Hoare <[email protected]> | 2011-02-16 11:33:14 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-02-16 11:33:14 -0800 |
| commit | f50caa75c20f997a578d70c696cc9c1bf9fa40fe (patch) | |
| tree | 7eefdeff1dde2fd4ac6ac1b0efe1e131446ec70e /src | |
| parent | More typechecking for native types and the needed plumbing in codegen. (diff) | |
| download | rust-f50caa75c20f997a578d70c696cc9c1bf9fa40fe.tar.xz rust-f50caa75c20f997a578d70c696cc9c1bf9fa40fe.zip | |
Wrap long line in last commit.
Diffstat (limited to 'src')
| -rw-r--r-- | src/comp/middle/trans.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/comp/middle/trans.rs b/src/comp/middle/trans.rs index 037fd69f..282a62d6 100644 --- a/src/comp/middle/trans.rs +++ b/src/comp/middle/trans.rs @@ -70,7 +70,8 @@ state type crate_ctxt = rec(session.session sess, hashmap[str, ValueRef] item_names, hashmap[ast.def_id, ValueRef] item_ids, hashmap[ast.def_id, @ast.item] items, - hashmap[ast.def_id, @ast.native_item] native_items, + hashmap[ast.def_id, + @ast.native_item] native_items, hashmap[ast.def_id, @tag_info] tags, hashmap[ast.def_id, ValueRef] fn_pairs, hashmap[ast.def_id, ValueRef] consts, |