| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
According to CONTRIBUTING.md,
Don't use C++ style comments
/* This is the prefered comment style */
Use C++ style comments only for temporary comment e.g. commenting out some code lines.
|
|
Introduce mrb_str_cat_lit
|
|
|
|
|
|
|
|
|
|
- reduce compile time by a little bit (full-core: ~0.7s for me)
- thanks to 'include-what-you-use' for some help
- include Standard C header files before any other (coding style)
|
|
|
|
|
|
|
|
"spec.author=" expects a String represents a single author.
"spec.authors=" expects an Array which is a list of multiple authors.
http://guides.rubygems.org/specification-reference/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
identifier in mruby
|
|
|
|
|
|
|
|
|
|
strlen().
|
|
|
|
|
|
|
|
|
|
|
|
Make mrb_str_new_cstr() accept NULL pointer. It generates 0byte strings by NULL pointer.
|
|
For portability: %ld can't be used to print a 64-bit mrb_int on
WIN(32|64) because long is 32-bit wide.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
be self-managed class instances.
|
|
|
|
|