since #1441, NaN boxing with 64bit pointer works; close #2476

This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-07-21 21:55:52 +09:00
parent beafed1104
commit 4cc9e5d8b1
-4
View File
@@ -29,10 +29,6 @@ mrb_open_core(mrb_allocf f, void *ud)
static const struct mrb_context mrb_context_zero = { 0 };
mrb_state *mrb;
#ifdef MRB_NAN_BOXING
mrb_static_assert(sizeof(void*) == 4, "when using NaN boxing sizeof pointer must be 4 byte");
#endif
mrb = (mrb_state *)(f)(NULL, NULL, sizeof(mrb_state), ud);
if (mrb == NULL) return NULL;