diff options
| author | bors <bors@rust-lang.org> | 2014-11-16 11:27:35 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-11-16 11:27:35 +0000 |
| commit | 0c7a3d6c167c4656e8d35a1d428d142993e0aaab (patch) | |
| tree | bf70393828be01b5042bdc76031d0a9ec7cb4900 /src/libstd/path | |
| parent | cb51567e1911452f3da4b924a91e5360f5efe67c (diff) | |
| parent | 892d4e28f4021ffa815649ec3a52f22f929b3708 (diff) | |
| download | rust-0c7a3d6c167c4656e8d35a1d428d142993e0aaab.tar.gz rust-0c7a3d6c167c4656e8d35a1d428d142993e0aaab.zip | |
auto merge of #18978 : jakub-/rust/roll-up, r=cmr
Diffstat (limited to 'src/libstd/path')
| -rw-r--r-- | src/libstd/path/posix.rs | 3 | ||||
| -rw-r--r-- | src/libstd/path/windows.rs | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/libstd/path/posix.rs b/src/libstd/path/posix.rs index 794f6978642..e2ff824a7c9 100644 --- a/src/libstd/path/posix.rs +++ b/src/libstd/path/posix.rs @@ -13,12 +13,11 @@ use c_str::{CString, ToCStr}; use clone::Clone; use cmp::{PartialEq, Eq, PartialOrd, Ord, Ordering}; -use from_str::FromStr; use hash; use io::Writer; use iter::{DoubleEndedIterator, AdditiveIterator, Extend, Iterator, Map}; use option::{Option, None, Some}; -use str::Str; +use str::{FromStr, Str}; use str; use slice::{CloneSliceAllocPrelude, Splits, AsSlice, VectorVector, PartialEqSlicePrelude, SlicePrelude}; diff --git a/src/libstd/path/windows.rs b/src/libstd/path/windows.rs index 2da2159653e..b8016e3e8f4 100644 --- a/src/libstd/path/windows.rs +++ b/src/libstd/path/windows.rs @@ -16,14 +16,13 @@ use ascii::AsciiCast; use c_str::{CString, ToCStr}; use clone::Clone; use cmp::{PartialEq, Eq, PartialOrd, Ord, Ordering}; -use from_str::FromStr; use hash; use io::Writer; use iter::{AdditiveIterator, DoubleEndedIterator, Extend, Iterator, Map}; use mem; use option::{Option, Some, None}; use slice::{AsSlice, SlicePrelude}; -use str::{CharSplits, Str, StrAllocating, StrVector, StrPrelude}; +use str::{CharSplits, FromStr, Str, StrAllocating, StrVector, StrPrelude}; use string::String; use unicode::char::UnicodeChar; use vec::Vec; |
