diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-02-02 08:36:45 +0100 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-02-02 08:36:45 +0100 |
| commit | e6e27924e17aa7def20ecaf88abc18ead6d97f93 (patch) | |
| tree | 25f4c7081f5fd2539ec79536cd95853109a33eb4 /src/liballoc/string.rs | |
| parent | 5594b0d5b8924e57f62d0408acb6d7982e93ad65 (diff) | |
| download | rust-e6e27924e17aa7def20ecaf88abc18ead6d97f93.tar.gz rust-e6e27924e17aa7def20ecaf88abc18ead6d97f93.zip | |
liballoc: cargo check passes on 2018
Diffstat (limited to 'src/liballoc/string.rs')
| -rw-r--r-- | src/liballoc/string.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/liballoc/string.rs b/src/liballoc/string.rs index fa15e9ad901..d8f46374ce2 100644 --- a/src/liballoc/string.rs +++ b/src/liballoc/string.rs @@ -56,11 +56,11 @@ use core::ptr; use core::str::pattern::Pattern; use core::str::lossy; -use collections::CollectionAllocErr; -use borrow::{Cow, ToOwned}; -use boxed::Box; -use str::{self, from_boxed_utf8_unchecked, FromStr, Utf8Error, Chars}; -use vec::Vec; +use crate::collections::CollectionAllocErr; +use crate::borrow::{Cow, ToOwned}; +use crate::boxed::Box; +use crate::str::{self, from_boxed_utf8_unchecked, FromStr, Utf8Error, Chars}; +use crate::vec::Vec; /// A UTF-8 encoded, growable string. /// |
