Remove unused field in rb_iseq_constant_body
This was introduced in 191ce5344ec42c91571f8f47c85be9138262b1c7 and has been unused since beae6cbf0fd8b6619e5212552de98022d4c4d4d4
This commit is contained in:
parent
caf565f7bf
commit
1d8b689b9e
Notes:
git
2020-07-23 14:18:23 +09:00
3
iseq.c
3
iseq.c
@ -451,14 +451,11 @@ rb_iseq_memsize(const rb_iseq_t *iseq)
|
||||
return size;
|
||||
}
|
||||
|
||||
static uintptr_t fresh_iseq_unique_id = 0; /* -- Remove In 3.0 -- */
|
||||
|
||||
struct rb_iseq_constant_body *
|
||||
rb_iseq_constant_body_alloc(void)
|
||||
{
|
||||
struct rb_iseq_constant_body *iseq_body;
|
||||
iseq_body = ZALLOC(struct rb_iseq_constant_body);
|
||||
iseq_body->iseq_unique_id = fresh_iseq_unique_id++; /* -- Remove In 3.0 -- */
|
||||
return iseq_body;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user