VWA Embed the rest of the data objects in Enumerator
This commit is contained in:
parent
9e24d747ff
commit
1e075a734f
@ -1309,7 +1309,7 @@ static const rb_data_type_t yielder_data_type = {
|
||||
yielder_memsize,
|
||||
yielder_compact,
|
||||
},
|
||||
0, 0, RUBY_TYPED_FREE_IMMEDIATELY
|
||||
0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_EMBEDDABLE
|
||||
};
|
||||
|
||||
static struct yielder *
|
||||
@ -1449,7 +1449,7 @@ static const rb_data_type_t generator_data_type = {
|
||||
generator_memsize,
|
||||
generator_compact,
|
||||
},
|
||||
0, 0, RUBY_TYPED_FREE_IMMEDIATELY
|
||||
0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_EMBEDDABLE
|
||||
};
|
||||
|
||||
static struct generator *
|
||||
@ -2958,7 +2958,7 @@ static const rb_data_type_t producer_data_type = {
|
||||
producer_memsize,
|
||||
producer_compact,
|
||||
},
|
||||
0, 0, RUBY_TYPED_FREE_IMMEDIATELY
|
||||
0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_EMBEDDABLE
|
||||
};
|
||||
|
||||
static struct producer *
|
||||
|
Loading…
x
Reference in New Issue
Block a user