Remove ast::ty_vec

This commit is contained in:
Brian Anderson 2011-08-18 11:46:52 -07:00
parent ec898244f7
commit c2d2dad093
12 changed files with 5 additions and 157 deletions

View file

@ -92,7 +92,6 @@ fn ty_to_str(cx: &ctxt, typ: &t) -> str {
ty_istr. { s += "istr"; }
ty_box(tm) { s += "@" + mt_to_str(cx, tm); }
ty_uniq(t) { s += "~" + ty_to_str(cx, t); }
ty_vec(tm) { s += "vec<" + mt_to_str(cx, tm) + ">"; }
ty_ivec(tm) { s += "[" + mt_to_str(cx, tm) + "]"; }
ty_type. { s += "type"; }
ty_rec(elems) {