Skip to content

Commit d724b1b

Browse files
Manishearthalexcrichton
authored andcommitted
---
yaml --- r: 185279 b: refs/heads/master c: 1beaebb h: refs/heads/master i: 185277: 491a2a9 185275: 1b16d5d 185271: bf77728 185263: 0423141 185247: 2002db9 185215: 3e3825f v: v3
1 parent 61356f2 commit d724b1b

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
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: d6d33770da9b831248c782a421d4c9cbd99791ff
2+
refs/heads/master: 1beaebbaa69be535d00592e2ac37af4dcba427d9
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 3a96d6a9818fe2affc98a187fb1065120458cee9
55
refs/heads/try: ccf8fedf1cffcb8f6f3581d53d220039e192fe77

trunk/src/libstd/sys/windows/thread.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use prelude::v1::*;
1212

1313
use boxed;
14-
use boxed::Box;
1514
use cmp;
1615
use io;
1716
use mem;

trunk/src/libstd/sys/windows/thread_local.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ use prelude::v1::*;
1212

1313
use libc::types::os::arch::extra::{DWORD, LPVOID, BOOL};
1414

15+
use boxed;
1516
use mem;
1617
use ptr;
1718
use rt;
@@ -139,7 +140,7 @@ unsafe fn init_dtors() {
139140
DTOR_LOCK.lock();
140141
let dtors = DTORS;
141142
DTORS = ptr::null_mut();
142-
Boxed::from_raw(dtors);
143+
Box::from_raw(dtors);
143144
assert!(DTORS.is_null()); // can't re-init after destructing
144145
DTOR_LOCK.unlock();
145146
});

0 commit comments

Comments
 (0)