diff options
| author | Taiki Endo <te316e89@gmail.com> | 2019-04-15 11:23:21 +0900 |
|---|---|---|
| committer | Taiki Endo <te316e89@gmail.com> | 2019-04-18 14:47:35 +0900 |
| commit | 360432f1e8794de58cd94f34c9c17ad65871e5b5 (patch) | |
| tree | c4529f81addb47358f885fda80e881198a592578 /src/libcore/alloc.rs | |
| parent | 9387927ae2c0d2a283f6c48b705f25d38bb6e692 (diff) | |
| download | rust-360432f1e8794de58cd94f34c9c17ad65871e5b5.tar.gz rust-360432f1e8794de58cd94f34c9c17ad65871e5b5.zip | |
libcore => 2018
Diffstat (limited to 'src/libcore/alloc.rs')
| -rw-r--r-- | src/libcore/alloc.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libcore/alloc.rs b/src/libcore/alloc.rs index e842020561d..18354945a1e 100644 --- a/src/libcore/alloc.rs +++ b/src/libcore/alloc.rs @@ -2,12 +2,12 @@ #![stable(feature = "alloc_module", since = "1.28.0")] -use cmp; -use fmt; -use mem; -use usize; -use ptr::{self, NonNull}; -use num::NonZeroUsize; +use crate::cmp; +use crate::fmt; +use crate::mem; +use crate::usize; +use crate::ptr::{self, NonNull}; +use crate::num::NonZeroUsize; /// Represents the combination of a starting address and /// a total capacity of the returned block. |
