Skip to content

Commit e417e78

Browse files
committed
Add missing struct keyword to rust_gc
1 parent d8d9f2a commit e417e78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rt/rust_gc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ struct safe_point {
5757

5858
struct safe_point_index_entry {
5959
void (*ra)(); // The return address.
60-
const safe_point *safe_point; // The safe point.
60+
const struct safe_point *safe_point; // The safe point.
6161

6262
struct cmp {
6363
bool operator()(const safe_point_index_entry &entry, void (*ra)())

0 commit comments

Comments
 (0)