An error occurred fetching the project authors.
- 12 Oct, 2020 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
- Integrate `Fixnum` and `Integer` - Remove `Integral` - `int / int -> int` - Replace `mrb_fixnum()` to `mrb_int()` - Replace `mrb_fixnum_value()` to `mrb_int_value()`. - Use `mrb_integer_p()` instead of `mrb_fixnum_p()`
-
Yukihiro "Matz" Matsumoto authored
- `MRB_WITHOUT_FLOAT` => `MRB_NO_FLOAT` - `MRB_USE_FLOAT` => `MRB_USE_FLOAT32` The former is to use `USE_XXX` naming convention. The latter is to make sure `float` is 32bit float and not floating point number in general.
-
- 20 Jun, 2020 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
`mrb_get_arg1()` raises `ArgumentError` if the method does not receive one argument. And replaces all `mrb_get_args(mrb, "o", &arg)` by the new function.
-
- 03 Jan, 2019 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 25 Aug, 2018 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
`gcc -O3` raises error on truncation using `snprintf`.
-
- 13 Aug, 2018 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
`gcc -O3` raises error on truncation using `snprintf`.
-
- 14 Jun, 2018 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
`mrb_raisef()` only takes `%S` specifier. If you don't have extra arguments, use `mrb_raise()`.
-
- 24 Nov, 2016 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Tomasz Dąbrowski authored
-
- 17 Nov, 2016 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Tomasz Dąbrowski authored
Inline structures have no instance variables, no finalizer, and offer as much space as possible in RBASIC object. This means 24 bytes on 64-bit platforms and 12 bytes on 32-bit platforms. mruby-inline-struct gem is only provided for testing.
-