Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
00f6271e
Unverified
Commit
00f6271e
authored
4 years ago
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change arena index from `mrb_int` to `int`.
parent
b0e49ef7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mrbgems/mruby-compiler/core/parse.y
mrbgems/mruby-compiler/core/parse.y
+1
-1
mrbgems/mruby-compiler/core/y.tab.c
mrbgems/mruby-compiler/core/y.tab.c
+1
-1
No files found.
mrbgems/mruby-compiler/core/parse.y
View file @
00f6271e
...
@@ -6624,7 +6624,7 @@ dump_args(mrb_state *mrb, node *n, int offset)
...
@@ -6624,7 +6624,7 @@ dump_args(mrb_state *mrb, node *n, int offset)
static const char*
static const char*
str_dump(mrb_state *mrb, const char *str, int len)
str_dump(mrb_state *mrb, const char *str, int len)
{
{
mrb_
int ai = mrb_gc_arena_save(mrb);
int ai = mrb_gc_arena_save(mrb);
mrb_value s;
mrb_value s;
# if INT_MAX > MRB_INT_MAX / 4
# if INT_MAX > MRB_INT_MAX / 4
/* check maximum length with "\xNN" charactor */
/* check maximum length with "\xNN" charactor */
...
...
This diff is collapsed.
Click to expand it.
mrbgems/mruby-compiler/core/y.tab.c
View file @
00f6271e
...
@@ -12421,7 +12421,7 @@ dump_args(mrb_state *mrb, node *n, int offset)
...
@@ -12421,7 +12421,7 @@ dump_args(mrb_state *mrb, node *n, int offset)
static const char*
static const char*
str_dump(mrb_state *mrb, const char *str, int len)
str_dump(mrb_state *mrb, const char *str, int len)
{
{
mrb_
int ai = mrb_gc_arena_save(mrb);
int ai = mrb_gc_arena_save(mrb);
mrb_value s;
mrb_value s;
# if INT_MAX > MRB_INT_MAX / 4
# if INT_MAX > MRB_INT_MAX / 4
/* check maximum length with "\xNN" charactor */
/* check maximum length with "\xNN" charactor */
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment