about summary refs log tree commit diff
path: root/src/libstd/sys/windows
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2015-03-11 22:41:24 -0700
committerSteven Fackler <sfackler@gmail.com>2015-03-28 13:53:45 -0700
commitd502f4221fd5472c4a7905cdc3c59533e9612822 (patch)
treee9cc2523cb637e3c143be0a2433700ff8942bbbb /src/libstd/sys/windows
parent3e7385aae9d58c8e12137d7c07aad48551048c13 (diff)
downloadrust-d502f4221fd5472c4a7905cdc3c59533e9612822.tar.gz
rust-d502f4221fd5472c4a7905cdc3c59533e9612822.zip
Remove IteratorExt
All methods are inlined into Iterator with `Self: Sized` bounds to make
sure Iterator is still object safe.

[breaking-change]
Diffstat (limited to 'src/libstd/sys/windows')
-rw-r--r--src/libstd/sys/windows/process2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/windows/process2.rs b/src/libstd/sys/windows/process2.rs
index 4c2777459dd..9e9bb86446e 100644
--- a/src/libstd/sys/windows/process2.rs
+++ b/src/libstd/sys/windows/process2.rs
@@ -127,7 +127,7 @@ impl Process {
 
         use env::split_paths;
         use mem;
-        use iter::IteratorExt;
+        use iter::Iterator;
 
         // To have the spawning semantics of unix/windows stay the same, we need to
         // read the *child's* PATH if one is provided. See #15149 for more details.