librustc: Change repeated vector expressions to use implicit copyability.
This commit is contained in:
@@ -280,7 +280,12 @@ pub fn Parser(sess: @mut ParseSess,
|
||||
token: @mut tok0.tok,
|
||||
span: @mut span,
|
||||
last_span: @mut span,
|
||||
buffer: @mut ([placeholder, .. 4]),
|
||||
buffer: @mut ([
|
||||
placeholder.clone(),
|
||||
placeholder.clone(),
|
||||
placeholder.clone(),
|
||||
placeholder.clone(),
|
||||
]),
|
||||
buffer_start: @mut 0,
|
||||
buffer_end: @mut 0,
|
||||
tokens_consumed: @mut 0,
|
||||
|
||||
Reference in New Issue
Block a user