summaryrefslogtreecommitdiffhomepage
path: root/doc
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 /doc
parent2742ded32fe18f88833d76b297f5c2170b6880c3 (diff)
downloadmruby-ff57c0278fe7c2b83231fa40e0284e6685a29ee7.tar.gz
mruby-ff57c0278fe7c2b83231fa40e0284e6685a29ee7.zip
Remove broken `MRB_INT16` configuration option.
Diffstat (limited to 'doc')
-rw-r--r--doc/guides/mrbconf.md12
1 files changed, 4 insertions, 8 deletions
diff --git a/doc/guides/mrbconf.md b/doc/guides/mrbconf.md
index 2f81776df..1e1a5afcf 100644
--- a/doc/guides/mrbconf.md
+++ b/doc/guides/mrbconf.md
@@ -54,17 +54,13 @@ You can use mrbconfs with following ways:
* When defined removes floating point numbers from mruby.
* It makes mruby easier to handle in "Microcontroller without FPU" and "Kernel Space".
-`MRB_INT16`
-* When defined `int16_t` will be defined as `mrb_int`.
-* Conflicts with `MRB_INT32` and `MRB_INT64`.
-
`MRB_INT32`
-* When defined, or both `MRB_INT16` and `MRB_INT64` are not defined on 32-bit CPU mode, `int32_t` will be defined as `mrb_int`.
-* Conflicts with `MRB_INT16` and `MRB_INT64`.
+* When defined, or `MRB_INT64` are not defined on 32-bit CPU mode, `mrb_int` will be defined as `int32_t`.
+* Conflicts with `MRB_INT64`.
`MRB_INT64`
-* When defined, or both `MRB_INT16` and `MRB_INT32` are not defined on 64-bit CPU mode, `int64_t` will be defined as `mrb_int`.
-* Conflicts with `MRB_INT16` and `MRB_INT32`.
+* When defined, or `MRB_INT32` are not defined on 64-bit CPU mode, `mrb_int` will be defined as `int64_t`.
+* Conflicts with `MRB_INT32`.
## Garbage collector configuration.