diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-01-06 16:48:51 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-01-07 23:51:38 -0800 |
| commit | 7e0443d6c4e683105f20de85dc4591cc5cf2518d (patch) | |
| tree | 631c8a852acedabef00ba3e371e785e90a581c56 /src/libstd/path | |
| parent | 5350ee740e66a73161eb4cdf5b95d55fe570fc26 (diff) | |
| download | rust-7e0443d6c4e683105f20de85dc4591cc5cf2518d.tar.gz rust-7e0443d6c4e683105f20de85dc4591cc5cf2518d.zip | |
std: Fill in all missing imports
Fallout from the previous commits
Diffstat (limited to 'src/libstd/path')
| -rw-r--r-- | src/libstd/path/posix.rs | 3 | ||||
| -rw-r--r-- | src/libstd/path/windows.rs | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/src/libstd/path/posix.rs b/src/libstd/path/posix.rs index d149634a396..e0e3e8c790c 100644 --- a/src/libstd/path/posix.rs +++ b/src/libstd/path/posix.rs @@ -21,7 +21,8 @@ use str; use str::Str; use to_bytes::IterBytes; use vec; -use vec::{CopyableVector, RSplitIterator, SplitIterator, Vector, VectorVector}; +use vec::{CopyableVector, RSplitIterator, SplitIterator, Vector, VectorVector, + ImmutableEqVector, OwnedVector, ImmutableVector, OwnedCopyableVector}; use super::{BytesContainer, GenericPath, GenericPathUnsafe}; /// Iterator that yields successive components of a Path as &[u8] diff --git a/src/libstd/path/windows.rs b/src/libstd/path/windows.rs index 913b314c00b..be83a519807 100644 --- a/src/libstd/path/windows.rs +++ b/src/libstd/path/windows.rs @@ -13,14 +13,16 @@ use ascii::AsciiCast; use c_str::{CString, ToCStr}; use cast; +use clone::Clone; +use container::Container; use cmp::Eq; use from_str::FromStr; use iter::{AdditiveIterator, DoubleEndedIterator, Extendable, Invert, Iterator, Map}; use option::{Option, Some, None}; use str; -use str::{CharSplitIterator, OwnedStr, Str, StrVector}; +use str::{CharSplitIterator, OwnedStr, Str, StrVector, StrSlice}; use to_bytes::IterBytes; -use vec::Vector; +use vec::{Vector, OwnedVector, ImmutableVector}; use super::{contains_nul, BytesContainer, GenericPath, GenericPathUnsafe}; /// Iterator that yields successive components of a Path as &str |
