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
dad99afa
Unverified
Commit
dad99afa
authored
Jun 15, 2020
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary comments from `MRB_TT_*` definitions.
parent
f93dffb5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
25 deletions
+25
-25
include/mruby/value.h
include/mruby/value.h
+25
-25
No files found.
include/mruby/value.h
View file @
dad99afa
...
@@ -103,31 +103,31 @@ static const unsigned int IEEE754_INFINITY_BITS_SINGLE = 0x7F800000;
...
@@ -103,31 +103,31 @@ static const unsigned int IEEE754_INFINITY_BITS_SINGLE = 0x7F800000;
#endif
#endif
enum
mrb_vtype
{
enum
mrb_vtype
{
MRB_TT_FALSE
=
0
,
/* 0 */
MRB_TT_FALSE
=
0
,
MRB_TT_TRUE
,
/* 1 */
MRB_TT_TRUE
,
MRB_TT_FLOAT
,
/* 2 */
MRB_TT_FLOAT
,
MRB_TT_FIXNUM
,
/* 3 */
MRB_TT_FIXNUM
,
MRB_TT_SYMBOL
,
/* 4 */
MRB_TT_SYMBOL
,
MRB_TT_UNDEF
,
/* 5 */
MRB_TT_UNDEF
,
MRB_TT_CPTR
,
/* 6 */
MRB_TT_CPTR
,
MRB_TT_FREE
,
/* 7 */
MRB_TT_FREE
,
MRB_TT_OBJECT
,
/* 8 */
MRB_TT_OBJECT
,
MRB_TT_CLASS
,
/* 9 */
MRB_TT_CLASS
,
MRB_TT_MODULE
,
/* 10 */
MRB_TT_MODULE
,
MRB_TT_ICLASS
,
/* 11 */
MRB_TT_ICLASS
,
MRB_TT_SCLASS
,
/* 12 */
MRB_TT_SCLASS
,
MRB_TT_PROC
,
/* 13 */
MRB_TT_PROC
,
MRB_TT_ARRAY
,
/* 14 */
MRB_TT_ARRAY
,
MRB_TT_HASH
,
/* 15 */
MRB_TT_HASH
,
MRB_TT_STRING
,
/* 16 */
MRB_TT_STRING
,
MRB_TT_RANGE
,
/* 17 */
MRB_TT_RANGE
,
MRB_TT_EXCEPTION
,
/* 18 */
MRB_TT_EXCEPTION
,
MRB_TT_ENV
,
/* 19 */
MRB_TT_ENV
,
MRB_TT_DATA
,
/* 20 */
MRB_TT_DATA
,
MRB_TT_FIBER
,
/* 21 */
MRB_TT_FIBER
,
MRB_TT_ISTRUCT
,
/* 22 */
MRB_TT_ISTRUCT
,
MRB_TT_BREAK
,
/* 23 */
MRB_TT_BREAK
,
MRB_TT_MAXDEFINE
/* 24 */
MRB_TT_MAXDEFINE
};
};
#include <mruby/object.h>
#include <mruby/object.h>
...
...
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