about summary refs log tree commit diff
path: root/src/libstd/sys/windows
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-03-31 11:41:18 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-03-31 15:56:33 -0700
commit30532884f83c4346f736dee5df03e812bde94ddc (patch)
tree26e7ae049d0edb282e07f98b3a5eb9367e42f022 /src/libstd/sys/windows
parent554946c81eeb4fcfceda782f6c5af394ab3fe8d3 (diff)
downloadrust-30532884f83c4346f736dee5df03e812bde94ddc.tar.gz
rust-30532884f83c4346f736dee5df03e812bde94ddc.zip
Test fixes and rebase conflicts, round 2
Diffstat (limited to 'src/libstd/sys/windows')
-rw-r--r--src/libstd/sys/windows/fs.rs7
-rw-r--r--src/libstd/sys/windows/process.rs1
2 files changed, 0 insertions, 8 deletions
diff --git a/src/libstd/sys/windows/fs.rs b/src/libstd/sys/windows/fs.rs
index 3330130c770..f534a33d8cc 100644
--- a/src/libstd/sys/windows/fs.rs
+++ b/src/libstd/sys/windows/fs.rs
@@ -135,13 +135,6 @@ impl FileDesc {
             _ => Err(super::last_error()),
         }
     }
-
-    /// Extract the actual filedescriptor without closing it.
-    pub fn unwrap(self) -> fd_t {
-        let fd = self.fd;
-        unsafe { mem::forget(self) };
-        fd
-    }
 }
 
 impl Drop for FileDesc {
diff --git a/src/libstd/sys/windows/process.rs b/src/libstd/sys/windows/process.rs
index 2065df4fbe3..414083bc41f 100644
--- a/src/libstd/sys/windows/process.rs
+++ b/src/libstd/sys/windows/process.rs
@@ -24,7 +24,6 @@ use old_io::process::{ProcessExit, ExitStatus};
 use old_io::{IoResult, IoError};
 use old_io;
 use fs::PathExt;
-use os;
 use old_path::{BytesContainer, GenericPath};
 use ptr;
 use str;