librustc: Remove all uses of the old [T * N] fixed-length vector syntax

This commit is contained in:
Patrick Walton 2013-03-22 18:52:04 -07:00
parent 46d4cc12d1
commit 142dbd65da
29 changed files with 61 additions and 59 deletions

View file

@ -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,