diff options
| author | Patrick Walton <[email protected]> | 2010-09-29 16:58:42 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2010-09-29 16:58:42 -0700 |
| commit | 7e733bf2ee0c23be5a49fd81a419d3e69c38be27 (patch) | |
| tree | 83cd7d38ae14ab78a636ffbde1af46023ac7e996 /src | |
| parent | Switch boolean operands to 1-bit, as llvm prefers. Will promote to 8-bit when... (diff) | |
| download | rust-7e733bf2ee0c23be5a49fd81a419d3e69c38be27.tar.xz rust-7e733bf2ee0c23be5a49fd81a419d3e69c38be27.zip | |
Allow tag recursion through vectors as well as boxes
Diffstat (limited to 'src')
| -rw-r--r-- | src/boot/me/type.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/me/type.ml b/src/boot/me/type.ml index 3e6c2352..badd6b67 100644 --- a/src/boot/me/type.ml +++ b/src/boot/me/type.ml @@ -1012,7 +1012,7 @@ let populate_tag_graph_node (cx:Semant.ctxt) (id:Common.opaque_id) (n:int) = | Ast.TY_rec ty_rec -> Array.iter (fun (_, ty) -> add_ty ty) ty_rec | Ast.TY_fn ty_fn -> add_ty_fn ty_fn - | Ast.TY_vec ty | Ast.TY_chan ty | Ast.TY_port ty | Ast.TY_mutable ty + | Ast.TY_chan ty | Ast.TY_port ty | Ast.TY_mutable ty | Ast.TY_constrained (ty, _) -> add_ty ty | Ast.TY_obj (_, ty_fns) -> Hashtbl.iter (fun _ ty_fn -> add_ty_fn ty_fn) ty_fns |