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
c345fe43
Unverified
Commit
c345fe43
authored
Sep 07, 2020
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
Sep 07, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5076 from dearblue/call_type
Remove `enum call_type`
parents
e2c62858
f99c3154
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
7 deletions
+0
-7
include/mruby.h
include/mruby.h
+0
-7
No files found.
include/mruby.h
View file @
c345fe43
...
@@ -1323,13 +1323,6 @@ MRB_INLINE void mrb_check_frozen(mrb_state *mrb, void *o)
...
@@ -1323,13 +1323,6 @@ MRB_INLINE void mrb_check_frozen(mrb_state *mrb, void *o)
if
(
mrb_frozen_p
((
struct
RBasic
*
)
o
))
mrb_frozen_error
(
mrb
,
o
);
if
(
mrb_frozen_p
((
struct
RBasic
*
)
o
))
mrb_frozen_error
(
mrb
,
o
);
}
}
typedef
enum
call_type
{
CALL_PUBLIC
,
CALL_FCALL
,
CALL_VCALL
,
CALL_TYPE_MAX
}
call_type
;
MRB_API
void
mrb_define_alias
(
mrb_state
*
mrb
,
struct
RClass
*
c
,
const
char
*
a
,
const
char
*
b
);
MRB_API
void
mrb_define_alias
(
mrb_state
*
mrb
,
struct
RClass
*
c
,
const
char
*
a
,
const
char
*
b
);
MRB_API
const
char
*
mrb_class_name
(
mrb_state
*
mrb
,
struct
RClass
*
klass
);
MRB_API
const
char
*
mrb_class_name
(
mrb_state
*
mrb
,
struct
RClass
*
klass
);
MRB_API
void
mrb_define_global_const
(
mrb_state
*
mrb
,
const
char
*
name
,
mrb_value
val
);
MRB_API
void
mrb_define_global_const
(
mrb_state
*
mrb
,
const
char
*
name
,
mrb_value
val
);
...
...
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