diff options
Diffstat (limited to 'src/lj_obj.c')
-rw-r--r-- | src/lj_obj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_obj.c b/src/lj_obj.c index 3d7e9fcb..5dbed7a8 100644 --- a/src/lj_obj.c +++ b/src/lj_obj.c | |||
@@ -11,12 +11,12 @@ | |||
11 | /* Object type names. */ | 11 | /* Object type names. */ |
12 | LJ_DATADEF const char *const lj_obj_typename[] = { /* ORDER LUA_T */ | 12 | LJ_DATADEF const char *const lj_obj_typename[] = { /* ORDER LUA_T */ |
13 | "no value", "nil", "boolean", "userdata", "number", "string", | 13 | "no value", "nil", "boolean", "userdata", "number", "string", |
14 | "table", "function", "userdata", "thread", "proto" | 14 | "table", "function", "userdata", "thread", "proto", "cdata" |
15 | }; | 15 | }; |
16 | 16 | ||
17 | LJ_DATADEF const char *const lj_obj_itypename[] = { /* ORDER LJ_T */ | 17 | LJ_DATADEF const char *const lj_obj_itypename[] = { /* ORDER LJ_T */ |
18 | "nil", "boolean", "boolean", "userdata", "string", "upval", "thread", | 18 | "nil", "boolean", "boolean", "userdata", "string", "upval", "thread", |
19 | "proto", "function", "trace", "table", "userdata", "number" | 19 | "proto", "function", "trace", "cdata", "table", "userdata", "number" |
20 | }; | 20 | }; |
21 | 21 | ||
22 | /* Compare two objects without calling metamethods. */ | 22 | /* Compare two objects without calling metamethods. */ |