vm_empty_cc: fix MSVC compile error
Seems they do not allow compound literals for static variables. See https://github.com/ruby/ruby/runs/733735274
This commit is contained in:
parent
4fbe86d0e2
commit
98d099be7e
Notes:
git
2020-06-09 09:53:16 +09:00
10
vm.c
10
vm.c
@ -386,7 +386,15 @@ rb_serial_t ruby_vm_global_method_state = 1;
|
|||||||
rb_serial_t ruby_vm_global_constant_state = 1;
|
rb_serial_t ruby_vm_global_constant_state = 1;
|
||||||
rb_serial_t ruby_vm_class_serial = 1;
|
rb_serial_t ruby_vm_class_serial = 1;
|
||||||
|
|
||||||
static const struct rb_callcache vm_empty_cc = VM_CC_ON_STACK(0, vm_call_general, { 0 }, 0);
|
static const struct rb_callcache vm_empty_cc = {
|
||||||
|
.flags = T_IMEMO | (imemo_callcache << FL_USHIFT) | VM_CALLCACHE_UNMARKABLE,
|
||||||
|
.klass = Qfalse,
|
||||||
|
.cme_ = NULL,
|
||||||
|
.call_ = vm_call_general,
|
||||||
|
.aux_ = {
|
||||||
|
.v = Qfalse,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
static void thread_free(void *ptr);
|
static void thread_free(void *ptr);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user