From a77d263e86feea55529800028f960d7124c1385f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 26 Jun 2014 15:38:28 -0300 Subject: unsigned-manipulation functions (lua_puhsunsigned, lua_tounsigned, etc.) deprecated --- ltests.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'ltests.c') diff --git a/ltests.c b/ltests.c index 25ada591..f72d413c 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 2.172 2014/06/17 17:13:29 roberto Exp roberto $ +** $Id: ltests.c,v 2.173 2014/06/19 18:29:30 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -1263,9 +1263,6 @@ static struct X { int x; } x; const char *s1 = lua_pushstring(L1, s); lua_assert((s == NULL && s1 == NULL) || (strcmp)(s, s1) == 0); } - else if EQ("tounsigned") { - lua_pushinteger(L1, (lua_Integer)lua_tounsigned(L1, getindex)); - } else if EQ("type") { lua_pushstring(L1, luaL_typename(L1, getnum)); } -- cgit v1.2.3-55-g6feb