aboutsummaryrefslogtreecommitdiffstats
path: root/error.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-03-30 06:24:40 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-03-30 06:24:40 +0000
commit27440e6721ce59592d25defed298fa76db1b69ac (patch)
tree30ea10047efbca17c392b028ca3207fb82560ccd /error.c
parent921bca89698a53f58c8a8934a494311275630a01 (diff)
downloadruby-27440e6721ce59592d25defed298fa76db1b69ac.tar.gz
error.c: update builtin_types
* error.c (builtin_types): update for r49932, insert T_IMEMO and move T_UNDEF. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50121 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'error.c')
-rw-r--r--error.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/error.c b/error.c
index 254cfe17f0..9d31975c8d 100644
--- a/error.c
+++ b/error.c
@@ -504,12 +504,11 @@ static const char builtin_types[][10] = {
"false",
"Symbol", /* :symbol */
"Fixnum",
- "", /* 0x16 */
+ "undef", /* internal use: #undef; should not happen */
"", /* 0x17 */
"", /* 0x18 */
"", /* 0x19 */
- "", /* 0x1a */
- "undef", /* internal use: #undef; should not happen */
+ "Memo", /* internal use: general memo */
"Node", /* internal use: syntax tree node */
"iClass", /* internal use: mixed-in module holder */
};