rt: Remove rust_box.h; I'm going to switch to an external map.

This commit is contained in:
Patrick Walton 2011-09-20 13:55:23 -07:00
parent e981abdb01
commit d73a8606c9

View file

@ -1,18 +0,0 @@
/* Rust box representation. */
#ifndef RUST_BOX_H
#define RUST_BOX_H
#include "rust_internal.h"
#include <stdint.h>
struct rust_box {
RUST_REFCOUNTED(rust_box)
type_desc *tydesc;
rust_box *gc_next;
rust_box *gc_prev;
uint8_t data[0];
};
#endif