Skip to content

Commit 8507f7e

Browse files
committed
---
yaml --- r: 44426 b: refs/heads/master c: 17d3a55 h: refs/heads/master v: v3
1 parent ac674e0 commit 8507f7e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 25c4676dfa805e027564116b9c37fee7aeaf1cc4
2+
refs/heads/master: 17d3a55362eb6a0b900d1d828e90d583897fa3b1
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: a6d9689399d091c3265f00434a69c551a61c28dc
55
refs/heads/try: ef355f6332f83371e4acf04fc4eb940ab41d78d3

trunk/src/libsyntax/ext/tt/transcribe.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,15 +121,15 @@ pure fn lookup_cur_matched_by_matched(r: @mut TtReader,
121121
vec::foldl(start, r.repeat_idx, red)
122122
}
123123

124-
fn lookup_cur_matched(r: &TtReader, name: ident) -> @named_match {
124+
fn lookup_cur_matched(r: @mut TtReader, name: ident) -> @named_match {
125125
lookup_cur_matched_by_matched(r, r.interpolations.get(&name))
126126
}
127127
enum lis {
128128
lis_unconstrained, lis_constraint(uint, ident), lis_contradiction(~str)
129129
}
130130

131-
fn lockstep_iter_size(t: token_tree, r: &TtReader) -> lis {
132-
fn lis_merge(lhs: lis, rhs: lis, r: &TtReader) -> lis {
131+
fn lockstep_iter_size(t: token_tree, r: @mut TtReader) -> lis {
132+
fn lis_merge(lhs: lis, rhs: lis, r: @mut TtReader) -> lis {
133133
match lhs {
134134
lis_unconstrained => rhs,
135135
lis_contradiction(_) => lhs,

0 commit comments

Comments
 (0)