diff options
| author | Eduard Burtescu <edy.burt@gmail.com> | 2014-10-01 00:08:07 +0300 |
|---|---|---|
| committer | Eduard Burtescu <edy.burt@gmail.com> | 2014-10-02 16:36:00 +0300 |
| commit | 382f1bceb4e2a0496171f52d114a98ff8a86f9b7 (patch) | |
| tree | da16d223a789c24fdf4fd7d0117d541fe20b0643 /src/libcore | |
| parent | 84a4a07bbd66f9b1a05591d2c1a4964944c47d83 (diff) | |
| download | rust-382f1bceb4e2a0496171f52d114a98ff8a86f9b7.tar.gz rust-382f1bceb4e2a0496171f52d114a98ff8a86f9b7.zip | |
core: remove raw::GcBox.
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/raw.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/libcore/raw.rs b/src/libcore/raw.rs index 86b96ff15f1..a62e2ecdca0 100644 --- a/src/libcore/raw.rs +++ b/src/libcore/raw.rs @@ -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, |
