Skip to content

Commit 8e2c7af

Browse files
committed
---
yaml --- r: 38591 b: refs/heads/incoming c: c5fa613 h: refs/heads/master i: 38589: 1ef90b4 38587: bf000d3 38583: 23782b2 38575: 133c083 38559: 75df77c 38527: e9e8797 v: v3
1 parent 4bb7806 commit 8e2c7af

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
9-
refs/heads/incoming: 335e5ca33b606ce46e636c68fb85f486d4185717
9+
refs/heads/incoming: c5fa61349894282f9b9a367e08ede0ca4ef67a75
1010
refs/heads/dist-snap: 22efa39382d41b084fde1719df7ae8ce5697d8c9
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/src/libsyntax/ext/base.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ fn mk_ctxt(parse_sess: parse::parse_sess,
231231
mut mod_path: ~[],
232232
mut trace_mac: false
233233
};
234-
move (imp as ext_ctxt)
234+
move ((move imp) as ext_ctxt)
235235
}
236236

237237
fn expr_to_str(cx: ext_ctxt, expr: @ast::expr, error: ~str) -> ~str {

branches/incoming/src/libsyntax/util/interner.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fn mk<T:Eq IterBytes Hash Const Copy>() -> interner<T> {
1616
let m = map::HashMap::<T, uint>();
1717
let hi: hash_interner<T> =
1818
{map: m, vect: DVec()};
19-
move (hi as interner::<T>)
19+
move ((move hi) as interner::<T>)
2020
}
2121

2222
fn mk_prefill<T:Eq IterBytes Hash Const Copy>(init: ~[T]) -> interner<T> {

0 commit comments

Comments
 (0)