diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2015-01-02 09:12:27 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2015-01-02 12:07:04 -0500 |
| commit | cc5ecaf76589a83e40136e31d211246204767465 (patch) | |
| tree | 70c3ba43371986723515da2d87b6f415dcb402eb /src/libstd/path/posix.rs | |
| parent | 167683da230c9685d31b9e6155b18740f9fe858e (diff) | |
| download | rust-cc5ecaf76589a83e40136e31d211246204767465.tar.gz rust-cc5ecaf76589a83e40136e31d211246204767465.zip | |
merge `*SliceExt` traits, use assoc types in `SliceExt`, `Raw[Mut]Ptr`
Diffstat (limited to 'src/libstd/path/posix.rs')
| -rw-r--r-- | src/libstd/path/posix.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libstd/path/posix.rs b/src/libstd/path/posix.rs index bd4031e6230..8718d509f00 100644 --- a/src/libstd/path/posix.rs +++ b/src/libstd/path/posix.rs @@ -22,8 +22,7 @@ use option::Option::{None, Some}; use kinds::Sized; use str::{FromStr, Str}; use str; -use slice::{CloneSliceExt, Split, AsSlice, SliceConcatExt, - PartialEqSliceExt, SliceExt}; +use slice::{Split, AsSlice, SliceConcatExt, SliceExt}; use vec::Vec; use super::{BytesContainer, GenericPath, GenericPathUnsafe}; @@ -449,7 +448,7 @@ static dot_dot_static: &'static [u8] = b".."; mod tests { use super::*; use prelude::Option::{mod, Some, None}; - use prelude::{Vec, Clone, AsSlice, SliceExt, CloneSliceExt, IteratorExt}; + use prelude::{Vec, Clone, AsSlice, SliceExt, IteratorExt}; use prelude::{DoubleEndedIteratorExt, Str, StrExt, ToString, GenericPath}; use str; |
