diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2011-09-20 13:55:23 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2011-09-20 13:55:23 -0700 |
| commit | d73a8606c9fd786adaf2f332d0bed785776102ea (patch) | |
| tree | d54e3130ce5e388e4784ac2065bde19d3725720e | |
| parent | e981abdb019689150b65d7b0b9b0990b9d21bdcc (diff) | |
| download | rust-d73a8606c9fd786adaf2f332d0bed785776102ea.tar.gz rust-d73a8606c9fd786adaf2f332d0bed785776102ea.zip | |
rt: Remove rust_box.h; I'm going to switch to an external map.
| -rw-r--r-- | src/rt/rust_box.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/rt/rust_box.h b/src/rt/rust_box.h deleted file mode 100644 index 52d1046895c..00000000000 --- a/src/rt/rust_box.h +++ /dev/null @@ -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 - |
