File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 335e5ca33b606ce46e636c68fb85f486d4185717
2
+ refs/heads/master: c5fa61349894282f9b9a367e08ede0ca4ef67a75
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: eb8fd119c65c67f3b1b8268cc7341c22d39b7b61
5
5
refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ fn mk_ctxt(parse_sess: parse::parse_sess,
231
231
mut mod_path: ~[ ] ,
232
232
mut trace_mac: false
233
233
} ;
234
- move ( imp as ext_ctxt )
234
+ move ( ( move imp) as ext_ctxt )
235
235
}
236
236
237
237
fn expr_to_str ( cx : ext_ctxt , expr : @ast:: expr , error : ~str ) -> ~str {
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ fn mk<T:Eq IterBytes Hash Const Copy>() -> interner<T> {
16
16
let m = map:: HashMap :: < T , uint > ( ) ;
17
17
let hi: hash_interner < T > =
18
18
{ map: m, vect: DVec ( ) } ;
19
- move ( hi as interner :: < T > )
19
+ move ( ( move hi ) as interner :: < T > )
20
20
}
21
21
22
22
fn mk_prefill < T : Eq IterBytes Hash Const Copy > ( init : ~[ T ] ) -> interner < T > {
You can’t perform that action at this time.
0 commit comments