about summary refs log tree commit diff
path: root/src/liballoc/sync.rs
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-02-02 08:36:45 +0100
committerMazdak Farrokhzad <twingoow@gmail.com>2019-02-02 08:36:45 +0100
commite6e27924e17aa7def20ecaf88abc18ead6d97f93 (patch)
tree25f4c7081f5fd2539ec79536cd95853109a33eb4 /src/liballoc/sync.rs
parent5594b0d5b8924e57f62d0408acb6d7982e93ad65 (diff)
downloadrust-e6e27924e17aa7def20ecaf88abc18ead6d97f93.tar.gz
rust-e6e27924e17aa7def20ecaf88abc18ead6d97f93.zip
liballoc: cargo check passes on 2018
Diffstat (limited to 'src/liballoc/sync.rs')
-rw-r--r--src/liballoc/sync.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/liballoc/sync.rs b/src/liballoc/sync.rs
index f6cafd50dc8..b387f07f231 100644
--- a/src/liballoc/sync.rs
+++ b/src/liballoc/sync.rs
@@ -23,11 +23,11 @@ use core::hash::{Hash, Hasher};
 use core::{isize, usize};
 use core::convert::From;
 
-use alloc::{Global, Alloc, Layout, box_free, handle_alloc_error};
-use boxed::Box;
-use rc::is_dangling;
-use string::String;
-use vec::Vec;
+use crate::alloc::{Global, Alloc, Layout, box_free, handle_alloc_error};
+use crate::boxed::Box;
+use crate::rc::is_dangling;
+use crate::string::String;
+use crate::vec::Vec;
 
 /// A soft limit on the amount of references that may be made to an `Arc`.
 ///