core: remove raw::GcBox.

This commit is contained in:
Eduard Burtescu
2014-10-01 00:08:07 +03:00
parent 84a4a07bbd
commit 382f1bceb4
3 changed files with 0 additions and 40 deletions

View File

@@ -20,15 +20,6 @@
use mem;
/// The representation of `std::gc::Gc`.
pub struct GcBox<T> {
pub ref_count: uint,
pub drop_glue: fn(ptr: *mut u8),
pub prev: *mut GcBox<T>,
pub next: *mut GcBox<T>,
pub data: T,
}
/// The representation of a Rust slice
pub struct Slice<T> {
pub data: *const T,