Skip to content

Commit 2b88eb0

Browse files
committed
---
yaml --- r: 172207 b: refs/heads/beta c: 0abf458 h: refs/heads/master i: 172205: df677df 172203: ca3fec8 172199: 8d7d82f 172191: cb80889 v: v3
1 parent 1662f69 commit 2b88eb0

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
@@ -31,5 +31,5 @@ refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
3232
refs/heads/batch: b5571ed71a5879c0495a982506258d5d267744ed
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34-
refs/heads/beta: ef46caebcc2466c54d691dbc801e0b4a431f3ff3
34+
refs/heads/beta: 0abf4583486071a958aa1bd14ab8c5b8870fb74d
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928

branches/beta/src/libstd/sys/windows/timer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ fn helper(input: libc::HANDLE, messages: Receiver<Req>, _: ()) {
9191
} else {
9292
let remove = {
9393
match &mut chans[idx as uint - 1] {
94-
&(ref mut c, oneshot) => { c.call(); oneshot }
94+
&mut (ref mut c, oneshot) => { c.call(); oneshot }
9595
}
9696
};
9797
if remove {

branches/beta/src/test/pretty/path-type-bounds.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ fn foo<'a>(x: Box<Tr+ Sync + 'a>) -> Box<Tr+ Sync + 'a> { x }
1919
fn main() {
2020
let x: Box<Tr+ Sync>;
2121

22-
box() 1i as Box<Tr+ Sync>;
22+
Box::new(1i) as Box<Tr+ Sync>;
2323
}
2424

0 commit comments

Comments
 (0)