diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-03-22 18:52:04 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-03-26 21:29:34 -0700 |
| commit | 142dbd65da9ae168c198162f0e1eec1c960e91f5 (patch) | |
| tree | d403258aa9f4b33b7695a08100ce5454d49584b0 /src/libsyntax/parse | |
| parent | 46d4cc12d1f2b1c7b13d19ae88d123523e3e3964 (diff) | |
| download | rust-142dbd65da9ae168c198162f0e1eec1c960e91f5.tar.gz rust-142dbd65da9ae168c198162f0e1eec1c960e91f5.zip | |
librustc: Remove all uses of the old `[T * N]` fixed-length vector syntax
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index fb582ff3061..410ea975dd8 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -251,7 +251,7 @@ pub struct Parser { token: @mut token::Token, span: @mut span, last_span: @mut span, - buffer: @mut [TokenAndSpan * 4], + buffer: @mut [TokenAndSpan, ..4], buffer_start: @mut int, buffer_end: @mut int, tokens_consumed: @mut uint, |
