about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-09-30 22:31:23 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-09-30 22:31:23 +0530
commit2c4b89ca99d6f315119a72379ef476f7a23bcad7 (patch)
tree031781020d487677f9fd7d97d9cb4b4f7c7c4dd5 /src/libstd
parent283614fee5ace676f84028fb45f04704491eb7e3 (diff)
parentffab1b405c4008d935e05f2f3eebd3b97bdb0863 (diff)
downloadrust-2c4b89ca99d6f315119a72379ef476f7a23bcad7.tar.gz
rust-2c4b89ca99d6f315119a72379ef476f7a23bcad7.zip
Rollup merge of #28749 - tshepang:patch-6, r=bluss
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/path.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs
index ed70c2bd7b4..43c2766782e 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -351,7 +351,6 @@ impl<'a> Prefix<'a> {
 /// ```
 #[stable(feature = "rust1", since = "1.0.0")]
 pub fn is_separator(c: char) -> bool {
-    use ascii::*;
     c.is_ascii() && is_sep_byte(c as u8)
 }