diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-01 10:52:46 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-01 10:52:46 +0900 |
| commit | 5f937591580ef810fedcdfb40e94ceb9f8ef5178 (patch) | |
| tree | 0c7e2ee1e6d451df377fb3a36052bb728dc6824b /src/object.c | |
| parent | 78f2902c0680f53dc2cf4b7febce1d3613db67bf (diff) | |
| parent | 67de10bfcb9d9ff21e1aa678aff8afa10446b7c4 (diff) | |
| download | mruby-5f937591580ef810fedcdfb40e94ceb9f8ef5178.tar.gz mruby-5f937591580ef810fedcdfb40e94ceb9f8ef5178.zip | |
Merge branch 'issues/comment_style' of https://github.com/cubicdaiya/mruby into cubicdaiya-issues/comment_style
Diffstat (limited to 'src/object.c')
| -rw-r--r-- | src/object.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/object.c b/src/object.c index c6b72640f..1f0d903f2 100644 --- a/src/object.c +++ b/src/object.c @@ -361,7 +361,7 @@ static const struct types { unsigned char type; const char *name; } builtin_types[] = { -// {MRB_TT_NIL, "nil"}, +/* {MRB_TT_NIL, "nil"}, */ {MRB_TT_FALSE, "false"}, {MRB_TT_TRUE, "true"}, {MRB_TT_FIXNUM, "Fixnum"}, @@ -377,12 +377,12 @@ static const struct types { {MRB_TT_HASH, "Hash"}, {MRB_TT_STRING, "String"}, {MRB_TT_RANGE, "Range"}, -// {MRB_TT_BIGNUM, "Bignum"}, +/* {MRB_TT_BIGNUM, "Bignum"}, */ {MRB_TT_FILE, "File"}, {MRB_TT_DATA, "Data"}, /* internal use: wrapped C pointers */ -// {MRB_TT_VARMAP, "Varmap"}, /* internal use: dynamic variables */ -// {MRB_TT_NODE, "Node"}, /* internal use: syntax tree node */ -// {MRB_TT_UNDEF, "undef"}, /* internal use: #undef; should not happen */ +/* {MRB_TT_VARMAP, "Varmap"}, */ /* internal use: dynamic variables */ +/* {MRB_TT_NODE, "Node"}, */ /* internal use: syntax tree node */ +/* {MRB_TT_UNDEF, "undef"}, */ /* internal use: #undef; should not happen */ {-1, 0} }; |
