diff options
author | Mike Pall <mike> | 2012-07-09 16:02:05 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-07-09 16:02:05 +0200 |
commit | f20ff8a30dbec50bc20b47702c4c61c08f67bd5b (patch) | |
tree | 24829aa879eeaf94ecaa2d6dfe2bc53357a01562 /src/lib_table.c | |
parent | 6e4d0fdc8e8121fac45d85661c638093fbfd1e3a (diff) | |
download | luajit-f20ff8a30dbec50bc20b47702c4c61c08f67bd5b.tar.gz luajit-f20ff8a30dbec50bc20b47702c4c61c08f67bd5b.tar.bz2 luajit-f20ff8a30dbec50bc20b47702c4c61c08f67bd5b.zip |
Avoid compiler warnings about redefined C++ keywords.
Diffstat (limited to 'src/lib_table.c')
-rw-r--r-- | src/lib_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib_table.c b/src/lib_table.c index 973daaed..5210544b 100644 --- a/src/lib_table.c +++ b/src/lib_table.c | |||
@@ -157,7 +157,7 @@ LJLIB_CF(table_concat) | |||
157 | lua_rawgeti(L, 1, i); | 157 | lua_rawgeti(L, 1, i); |
158 | o = L->top-1; | 158 | o = L->top-1; |
159 | if (!(tvisstr(o) || tvisnumber(o))) | 159 | if (!(tvisstr(o) || tvisnumber(o))) |
160 | lj_err_callerv(L, LJ_ERR_TABCAT, typename(o), i); | 160 | lj_err_callerv(L, LJ_ERR_TABCAT, lj_typename(o), i); |
161 | luaL_addvalue(&b); | 161 | luaL_addvalue(&b); |
162 | if (i++ == e) break; | 162 | if (i++ == e) break; |
163 | if (seplen) | 163 | if (seplen) |