From e417e78e2b9757931613d0587e5ca1b7fb9085f1 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 19 Aug 2011 18:42:33 -0700 Subject: [PATCH] Add missing struct keyword to rust_gc --- src/rt/rust_gc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rt/rust_gc.cpp b/src/rt/rust_gc.cpp index 01ab282cc399..e10d2055884a 100644 --- a/src/rt/rust_gc.cpp +++ b/src/rt/rust_gc.cpp @@ -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)())