Add missing struct keyword to rust_gc

This commit is contained in:
Brian Anderson 2011-08-19 18:42:33 -07:00
parent d8d9f2adf2
commit e417e78e2b

View File

@ -57,7 +57,7 @@ struct safe_point {
struct safe_point_index_entry {
void (*ra)(); // The return address.
const safe_point *safe_point; // The safe point.
const struct safe_point *safe_point; // The safe point.
struct cmp {
bool operator()(const safe_point_index_entry &entry, void (*ra)())