diff options
| author | bors <bors@rust-lang.org> | 2015-03-12 17:39:30 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-03-12 17:39:30 +0000 |
| commit | 538840bc2d1b634a2a34b2c8bd72d99894058b66 (patch) | |
| tree | 82cab26f340e4cfdc5d373d621fd77713f6c6d78 /src/libstd/sys/windows/process.rs | |
| parent | 206ee0e8533dd3e1ee324da445e02ad79c51e849 (diff) | |
| parent | c933d44f7bb908aa520250b608f85bfacfccc337 (diff) | |
| download | rust-538840bc2d1b634a2a34b2c8bd72d99894058b66.tar.gz rust-538840bc2d1b634a2a34b2c8bd72d99894058b66.zip | |
Auto merge of #23245 - alexcrichton:allow-warnings-again, r=aturon
These were suppressing lots of interesting warnings! Turns out there was also quite a bit of dead code.
Diffstat (limited to 'src/libstd/sys/windows/process.rs')
| -rw-r--r-- | src/libstd/sys/windows/process.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libstd/sys/windows/process.rs b/src/libstd/sys/windows/process.rs index ca3ed54eb03..119ff3dbcc8 100644 --- a/src/libstd/sys/windows/process.rs +++ b/src/libstd/sys/windows/process.rs @@ -29,7 +29,6 @@ use ptr; use str; use sync::{StaticMutex, MUTEX_INIT}; use sys::fs::FileDesc; - use sys::timer; use sys_common::{AsInner, timeout}; @@ -129,8 +128,6 @@ impl Process { use libc::funcs::extra::msvcrt::get_osfhandle; use mem; - use iter::IteratorExt; - use str::StrExt; if cfg.gid().is_some() || cfg.uid().is_some() { return Err(IoError { |
