about summary refs log tree commit diff
path: root/src/liballoc/sync.rs
diff options
context:
space:
mode:
authorLinus Färnstrand <faern@faern.net>2020-04-04 17:24:03 +0200
committerLinus Färnstrand <faern@faern.net>2020-04-05 11:22:01 +0200
commitfff4f083986cb5f0430a78feb139603f0ceeb9c1 (patch)
treef48da38700fed8cd016d3e9d2652f2f2dfc03eb2 /src/liballoc/sync.rs
parente129923b7e4d58a92c8a0530cd6eaa5be548342d (diff)
downloadrust-fff4f083986cb5f0430a78feb139603f0ceeb9c1.tar.gz
rust-fff4f083986cb5f0430a78feb139603f0ceeb9c1.zip
Stop importing integer modules in liballoc
Diffstat (limited to 'src/liballoc/sync.rs')
-rw-r--r--src/liballoc/sync.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/liballoc/sync.rs b/src/liballoc/sync.rs
index 111a7651b5e..1cfb26eb35a 100644
--- a/src/liballoc/sync.rs
+++ b/src/liballoc/sync.rs
@@ -23,7 +23,6 @@ use core::ptr::{self, NonNull};
 use core::slice::{self, from_raw_parts_mut};
 use core::sync::atomic;
 use core::sync::atomic::Ordering::{Acquire, Relaxed, Release, SeqCst};
-use core::{isize, usize};
 
 use crate::alloc::{box_free, handle_alloc_error, AllocInit, AllocRef, Global, Layout};
 use crate::boxed::Box;