1
Fork 0

Remove 'deprecated mutable...' from our code

This should make compilation a bit less noisy.
This commit is contained in:
Marijn Haverbeke 2011-05-05 20:17:44 +02:00
parent 3d738e9e06
commit 1f45dda9d2
15 changed files with 43 additions and 43 deletions

View file

@ -497,7 +497,7 @@ fn parse_arg(parser p) -> ast.arg {
fn parse_seq_to_end[T](token.token ket,
option.t[token.token] sep,
(fn(parser) -> T) f,
mutable uint hi,
uint hi,
parser p) -> vec[T] {
let bool first = true;
let vec[T] v = vec();