diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-01-15 21:32:00 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-01-15 21:32:00 +0900 |
| commit | ff57c0278fe7c2b83231fa40e0284e6685a29ee7 (patch) | |
| tree | 4fdd4e1f9e6a35f7a39f1ed79813c6fac2230504 /doc | |
| parent | 2742ded32fe18f88833d76b297f5c2170b6880c3 (diff) | |
| download | mruby-ff57c0278fe7c2b83231fa40e0284e6685a29ee7.tar.gz mruby-ff57c0278fe7c2b83231fa40e0284e6685a29ee7.zip | |
Remove broken `MRB_INT16` configuration option.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/guides/mrbconf.md | 12 |
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. |
