gc.c: update comment for flexible array members (C++ incompatible) [ci skip]

This commit is contained in:
Yukihiro "Matz" Matsumoto
2023-09-14 16:53:35 +09:00
parent 4fe8b074bb
commit e8254eda42
+1 -1
View File
@@ -153,7 +153,7 @@ typedef struct mrb_heap_page {
struct mrb_heap_page *next;
struct mrb_heap_page *free_next;
mrb_bool old:1;
/* Flexible array members area a C99 feature, not C++ compatible */
/* Flexible array members are not C++ compatible */
/* void* objects[]; */
} mrb_heap_page;