diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-05-11 07:36:34 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-05-11 07:36:34 +0900 |
| commit | 2a280a8f70fe0eea5937b37888c5d77a2ada7bc5 (patch) | |
| tree | 7b02762eaade81a1b0601afc9985960469c35d8d /doc | |
| parent | 23019213b73fd98844facaedae862e71885e7f34 (diff) | |
| download | mruby-2a280a8f70fe0eea5937b37888c5d77a2ada7bc5.tar.gz mruby-2a280a8f70fe0eea5937b37888c5d77a2ada7bc5.zip | |
Remove the obsolete term `Fixnum`.
Except for compatibility code.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/mruby3.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/mruby3.md b/doc/mruby3.md index d5218428e..cf103e428 100644 --- a/doc/mruby3.md +++ b/doc/mruby3.md @@ -77,8 +77,9 @@ to be default `mrb_value` representation. Now the default is Pack `mrb_value` in an `intptr_t` integer. Consumes less memory compared to `MRB_NO_BOXING` especially on 32-bit -platforms. `Fixnum` size is 31 bits, so some integer values -does not fit in `Fixnum` integers. +platforms. Inlined integer size is 31 bits, so some `mrb_int` +values does not fit in `mrb_value`. Those integers are allocated +in the object heap as `struct RInteger`. ## `MRB_NAN_BOXING` |
