diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-08-19 18:42:33 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-08-19 18:42:33 -0700 |
| commit | e417e78e2b9757931613d0587e5ca1b7fb9085f1 (patch) | |
| tree | 5de947352b79a35c9e71ad793253332860e38a76 /src/rt/rust_gc.cpp | |
| parent | d8d9f2adf27ffa57fcd84958d6a823d0d6b90b77 (diff) | |
| download | rust-e417e78e2b9757931613d0587e5ca1b7fb9085f1.tar.gz rust-e417e78e2b9757931613d0587e5ca1b7fb9085f1.zip | |
Add missing struct keyword to rust_gc
Diffstat (limited to 'src/rt/rust_gc.cpp')
| -rw-r--r-- | src/rt/rust_gc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_gc.cpp b/src/rt/rust_gc.cpp index 01ab282cc39..e10d2055884 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)()) |
