about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2015-01-04 21:47:03 -0500
committerJorge Aparicio <japaricious@gmail.com>2015-01-05 14:56:49 -0500
commitc26f5801f5bfca0840c7fc3e01e4c14f8437ef58 (patch)
tree88e26c27e9e0165d5ecb9c13666af0515524b9a8 /src/libcore
parent774588fd9def900a467ba2b4ec3620f89832a799 (diff)
downloadrust-c26f5801f5bfca0840c7fc3e01e4c14f8437ef58.tar.gz
rust-c26f5801f5bfca0840c7fc3e01e4c14f8437ef58.zip
remove unused `Sized` imports
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/raw.rs1
-rw-r--r--src/libcore/slice.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/libcore/raw.rs b/src/libcore/raw.rs
index 0e91d6123f5..5ef6f6b2623 100644
--- a/src/libcore/raw.rs
+++ b/src/libcore/raw.rs
@@ -20,7 +20,6 @@
 
 use kinds::Copy;
 use mem;
-use kinds::Sized;
 
 /// The representation of a Rust slice
 #[repr(C)]
diff --git a/src/libcore/slice.rs b/src/libcore/slice.rs
index 9aa3f76b525..1fde906062e 100644
--- a/src/libcore/slice.rs
+++ b/src/libcore/slice.rs
@@ -1372,7 +1372,6 @@ pub unsafe fn from_raw_mut_buf<'a, T>(p: &'a *mut T, len: uint) -> &'a mut [T] {
 /// Operations on `[u8]`.
 #[experimental = "needs review"]
 pub mod bytes {
-    use kinds::Sized;
     use ptr;
     use slice::SliceExt;