Minor unused imports etc.

This commit is contained in:
Niko Matsakis 2015-02-18 17:31:26 -05:00
parent f5491e63b4
commit cc61f9c1d5
3 changed files with 1 additions and 3 deletions

View File

@ -143,7 +143,6 @@ mod platform {
use super::Prefix;
use core::prelude::*;
use ffi::OsStr;
use std::marker::PhantomData;
#[inline]
pub fn is_sep_byte(b: u8) -> bool {

View File

@ -153,7 +153,7 @@ use any::Any;
use cell::UnsafeCell;
use fmt;
use io;
use marker::{PhantomData, Send, Sync};
use marker::PhantomData;
use old_io::stdio;
use rt::{self, unwind};
use sync::{Mutex, Condvar, Arc};

View File

@ -50,7 +50,6 @@
html_playground_url = "http://play.rust-lang.org/")]
#![deny(missing_docs)]
#![feature(core)]
#![feature(box_syntax)]
#![feature(collections)]
#![feature(int_uint)]