Remove unused struct member thgroup->group

This commit is contained in:
Matt Valentine-House 2023-01-20 14:51:19 +00:00 коммит произвёл Peter Zhu
Родитель 36fa4f13ca
Коммит 0457e43423
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -4691,7 +4691,6 @@ rb_thread_atfork_before_exec(void)
struct thgroup {
int enclosed;
VALUE group;
};
static size_t
@ -4733,7 +4732,6 @@ thgroup_s_alloc(VALUE klass)
group = TypedData_Make_Struct(klass, struct thgroup, &thgroup_data_type, data);
data->enclosed = 0;
data->group = group;
return group;
}