about summary refs log tree commit diff
path: root/src/libstd/sys/windows/process.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-03-17 12:15:24 +0100
committerSimon Sapin <simon.sapin@exyr.org>2018-03-21 17:54:33 +0100
commitc09b9f937250db0f51b705a3110f8cffdad083bb (patch)
tree54b20c17d36bae030cc3c83472d1d402b36ecf3e /src/libstd/sys/windows/process.rs
parentcc34ca1c9787fde84116637a0cee92fc5e375e3d (diff)
downloadrust-c09b9f937250db0f51b705a3110f8cffdad083bb.tar.gz
rust-c09b9f937250db0f51b705a3110f8cffdad083bb.zip
Deprecate the AsciiExt trait in favor of inherent methods
The trait and some of its methods are stable and will remain.
Some of the newer methods are unstable and can be removed later.

Fixes https://github.com/rust-lang/rust/issues/39658
Diffstat (limited to 'src/libstd/sys/windows/process.rs')
-rw-r--r--src/libstd/sys/windows/process.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/sys/windows/process.rs b/src/libstd/sys/windows/process.rs
index f1ab9c47609..afa8e3e1369 100644
--- a/src/libstd/sys/windows/process.rs
+++ b/src/libstd/sys/windows/process.rs
@@ -10,7 +10,6 @@
 
 #![unstable(feature = "process_internals", issue = "0")]
 
-use ascii::AsciiExt;
 use collections::BTreeMap;
 use env::split_paths;
 use env;