From 66114f8332c734c6fb241803ca301f2ce0da1838 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Wed, 12 Aug 2020 23:35:20 +0900 Subject: Change default `mrb_value` representation to `MRB_WORD_BOXING`. --- include/mrbconf.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'include') 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; -- cgit v1.2.3