summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-08-12 23:35:20 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2020-10-12 16:21:37 +0900
commit66114f8332c734c6fb241803ca301f2ce0da1838 (patch)
tree4f66a4ad9387a98053073c97c7534705114f95ef /include
parent8813ebec07b4da46bf21a06cd16987208a442991 (diff)
downloadmruby-66114f8332c734c6fb241803ca301f2ce0da1838.tar.gz
mruby-66114f8332c734c6fb241803ca301f2ce0da1838.zip
Change default `mrb_value` representation to `MRB_WORD_BOXING`.
Diffstat (limited to 'include')
-rw-r--r--include/mrbconf.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/mrbconf.h b/include/mrbconf.h
index 3867619a9..3241346b2 100644
--- a/include/mrbconf.h
+++ b/include/mrbconf.h
@@ -79,11 +79,7 @@
/* if no specific boxing type is chosen */
#if !defined(MRB_NAN_BOXING) && !defined(MRB_WORD_BOXING) && !defined(MRB_NO_BOXING)
-# if defined(MRB_64BIT) && !defined(MRB_INT64)
-# define MRB_NAN_BOXING
-# else
-# define MRB_WORD_BOXING
-# endif
+# define MRB_WORD_BOXING
#endif
/* add -DMRB_INT32 to use 32bit integer for mrb_int; conflict with MRB_INT64;