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
4e46abb8
Commit
4e46abb8
authored
Jun 03, 2012
by
Yukihiro Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused mrb_exec_recursive
parent
597978c1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
10 deletions
+0
-10
include/mruby.h
include/mruby.h
+0
-2
src/etc.c
src/etc.c
+0
-8
No files found.
include/mruby.h
View file @
4e46abb8
...
...
@@ -469,8 +469,6 @@ mrb_value mrb_yield_with_self(mrb_state *mrb, mrb_value b, int argc, mrb_value *
mrb_value
mrb_class_new_instance
(
mrb_state
*
mrb
,
int
,
mrb_value
*
,
struct
RClass
*
);
mrb_value
mrb_class_new_instance_m
(
mrb_state
*
mrb
,
mrb_value
klass
);
mrb_value
mrb_exec_recursive
(
mrb_state
*
mrb
,
mrb_value
(
*
)(
mrb_state
*
,
mrb_value
,
mrb_value
,
int
),
mrb_value
,
void
*
);
#ifndef xmalloc
#define xmalloc malloc
#define xrealloc realloc
...
...
src/etc.c
View file @
4e46abb8
...
...
@@ -111,14 +111,6 @@ mrb_exec_recursive(mrb_state *mrb, mrb_value (*func) (mrb_state *, mrb_value, mr
* current method is called recursively on the ordered pair <obj, paired_obj>
*/
mrb_value
mrb_exec_recursive_paired
(
mrb_state
*
mrb
,
mrb_value
(
*
func
)
(
mrb_state
*
,
mrb_value
,
mrb_value
,
int
),
mrb_value
obj
,
mrb_value
paired_obj
,
void
*
arg
)
{
// return mrb_exec_recursive_paired(mrb, recursive_eql, hash1, hash2, mrb_fixnum_value((int)&data));
return
func
(
mrb
,
obj
,
paired_obj
,
0
);
}
mrb_sym
mrb_to_id
(
mrb_state
*
mrb
,
mrb_value
name
)
{
...
...
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