From 27440e6721ce59592d25defed298fa76db1b69ac Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 30 Mar 2015 06:24:40 +0000 Subject: [PATCH] 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 --- error.c | 5 ++--- 1 file 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 */ };