about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-09-30 14:51:53 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-09-30 14:51:53 -0400
commitc03be232ccb38f9d7b1051ee9c13b73db2347604 (patch)
treeb24a48399820937a6f298dea2cacde09a4433de3 /src/libstd
parent7d433d641852f76d0d781617d3057f7d3fc90563 (diff)
parentffab1b405c4008d935e05f2f3eebd3b97bdb0863 (diff)
downloadrust-c03be232ccb38f9d7b1051ee9c13b73db2347604.tar.gz
rust-c03be232ccb38f9d7b1051ee9c13b73db2347604.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)
 }