diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-08-18 14:11:06 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-08-18 14:11:06 -0700 |
| commit | 4fc361823377ca10e6ac38e66824a876012b312e (patch) | |
| tree | 32a10fab303093f438e493811a009819b9df4510 /src/comp/syntax/parse | |
| parent | 504ec8b00dec7527bfd1f4be78223c9fd8b6483c (diff) | |
| download | rust-4fc361823377ca10e6ac38e66824a876012b312e.tar.gz rust-4fc361823377ca10e6ac38e66824a876012b312e.zip | |
Change ast::ty_ivec, ty::ty_ivec to ty_vec
Diffstat (limited to 'src/comp/syntax/parse')
| -rw-r--r-- | src/comp/syntax/parse/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/syntax/parse/parser.rs b/src/comp/syntax/parse/parser.rs index 9357b11fa03..cc7eb9dcc49 100644 --- a/src/comp/syntax/parse/parser.rs +++ b/src/comp/syntax/parse/parser.rs @@ -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")) { |
