Change ast::ty_ivec, ty::ty_ivec to ty_vec

This commit is contained in:
Brian Anderson 2011-08-18 14:11:06 -07:00
parent 504ec8b00d
commit 4fc3618233
14 changed files with 47 additions and 47 deletions

View file

@ -570,7 +570,7 @@ fn parse_ty(p: &parser, colons_before_params: bool) -> @ast::ty {
}
} else if (p.peek() == token::LBRACKET) {
expect(p, token::LBRACKET);
t = ast::ty_ivec(parse_mt(p));
t = ast::ty_vec(parse_mt(p));
hi = p.get_hi_pos();
expect(p, token::RBRACKET);
} else if (eat_word(p, "fn")) {