Skip to content

Commit

Permalink
Test fixes and rebase conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Feb 23, 2015
1 parent 1beaebb commit ee6f2a1
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/libstd/lib.rs
Expand Up @@ -122,6 +122,7 @@
#![feature(unsafe_destructor)]
#![feature(unsafe_no_drop_flag)]
#![feature(macro_reexport)]
#![feature(hash)]
#![cfg_attr(test, feature(test, rustc_private, env))]

// Don't link to std. We are std.
Expand Down
1 change: 0 additions & 1 deletion src/libstd/sys/windows/thread.rs
Expand Up @@ -13,7 +13,6 @@ use prelude::v1::*;
use boxed;
use cmp;
use io;
use mem;
use ptr;
use libc;
use libc::types::os::arch::extra::{LPSECURITY_ATTRIBUTES, SIZE_T, BOOL,
Expand Down
1 change: 0 additions & 1 deletion src/libstd/sys/windows/thread_local.rs
Expand Up @@ -13,7 +13,6 @@ use prelude::v1::*;
use libc::types::os::arch::extra::{DWORD, LPVOID, BOOL};

use boxed;
use mem;
use ptr;
use rt;
use sys_common::mutex::{MUTEX_INIT, Mutex};
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/thread_local/mod.rs
Expand Up @@ -330,7 +330,6 @@ impl<T: 'static> Key<T> {
mod imp {
use prelude::v1::*;

use alloc::boxed;
use cell::UnsafeCell;
use intrinsics;
use ptr;
Expand Down Expand Up @@ -389,6 +388,7 @@ mod imp {
// Due to rust-lang/rust#18804, make sure this is not generic!
#[cfg(target_os = "linux")]
unsafe fn register_dtor(t: *mut u8, dtor: unsafe extern fn(*mut u8)) {
use boxed;
use mem;
use libc;
use sys_common::thread_local as os;
Expand Down

0 comments on commit ee6f2a1

Please sign in to comment.