rustc: Move the interner over to interior vectors

This commit is contained in:
Patrick Walton 2011-07-01 16:59:03 -07:00
parent b9a2117475
commit bd7a072266
2 changed files with 7 additions and 7 deletions

View file

@ -378,7 +378,7 @@ fn populate_type_store(&ctxt cx) {
intern(cx, ty_task, none[str]);
intern(cx, ty_type, none[str]);
intern(cx, ty_bot, none[str]);
assert (vec::len(cx.ts.vect) == idx_first_others);
assert (ivec::len(cx.ts.vect) == idx_first_others);
}
fn mk_rcache() -> creader_cache {