diff options
| author | Marijn Haverbeke <[email protected]> | 2011-05-05 20:17:44 +0200 |
|---|---|---|
| committer | Marijn Haverbeke <[email protected]> | 2011-05-05 20:19:43 +0200 |
| commit | 1f45dda9d2944a90e1dfa9599d030cbfb4f927b7 (patch) | |
| tree | 1a1d7c3e15af362539d6788af29ab27d751c6416 /src/comp/front/parser.rs | |
| parent | Return a fresh, unreachable context after ret, break, and cont (diff) | |
| download | rust-1f45dda9d2944a90e1dfa9599d030cbfb4f927b7.tar.xz rust-1f45dda9d2944a90e1dfa9599d030cbfb4f927b7.zip | |
Remove 'deprecated mutable...' from our code
This should make compilation a bit less noisy.
Diffstat (limited to 'src/comp/front/parser.rs')
| -rw-r--r-- | src/comp/front/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/parser.rs b/src/comp/front/parser.rs index a7e355af..3ef16c71 100644 --- a/src/comp/front/parser.rs +++ b/src/comp/front/parser.rs @@ -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(); |