summaryrefslogtreecommitdiffhomepage
path: root/include/mrbconf.h
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-01-15 21:32:00 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2020-01-15 21:32:00 +0900
commitff57c0278fe7c2b83231fa40e0284e6685a29ee7 (patch)
tree4fdd4e1f9e6a35f7a39f1ed79813c6fac2230504 /include/mrbconf.h
parent2742ded32fe18f88833d76b297f5c2170b6880c3 (diff)
downloadmruby-ff57c0278fe7c2b83231fa40e0284e6685a29ee7.tar.gz
mruby-ff57c0278fe7c2b83231fa40e0284e6685a29ee7.zip
Remove broken `MRB_INT16` configuration option.
Diffstat (limited to 'include/mrbconf.h')
-rw-r--r--include/mrbconf.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/include/mrbconf.h b/include/mrbconf.h
index 0509f4ff9..3a574c7d2 100644
--- a/include/mrbconf.h
+++ b/include/mrbconf.h
@@ -40,19 +40,16 @@
/* no MRB_METHOD_T_STRUCT requires highest 2 bits of function pointers to be zero */
//#define MRB_METHOD_T_STRUCT
-/* add -DMRB_INT16 to use 16bit integer for mrb_int; conflict with MRB_INT32 and MRB_INT64 */
-//#define MRB_INT16
-
-/* add -DMRB_INT32 to use 32bit integer for mrb_int; conflict with MRB_INT16 and MRB_INT64;
+/* add -DMRB_INT32 to use 32bit integer for mrb_int; conflict with MRB_INT64;
Default for 32-bit CPU mode. */
//#define MRB_INT32
-/* add -DMRB_INT64 to use 64bit integer for mrb_int; conflict with MRB_INT16 and MRB_INT32;
+/* add -DMRB_INT64 to use 64bit integer for mrb_int; conflict with MRB_INT32;
Default for 64-bit CPU mode. */
//#define MRB_INT64
/* if no specific integer type is chosen */
-#if !defined(MRB_INT16) && !defined(MRB_INT32) && !defined(MRB_INT64)
+#if !defined(MRB_INT32) && !defined(MRB_INT64)
# if defined(MRB_64BIT) && !defined(MRB_NAN_BOXING)
/* Use 64bit integers on 64bit architecture (without MRB_NAN_BOXING) */
# define MRB_INT64