'luaL_typeerror' deprecated

This commit is contained in:
Roberto Ierusalimschy
2010-11-10 15:38:10 -02:00
parent fa1f724378
commit e885b91326
3 changed files with 6 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lauxlib.h,v 1.108 2010/07/02 11:38:13 roberto Exp roberto $
** $Id: lauxlib.h,v 1.109 2010/10/25 20:31:11 roberto Exp roberto $
** Auxiliary functions for building Lua libraries
** See Copyright Notice in lua.h
*/
@@ -32,7 +32,6 @@ LUALIB_API void (luaL_checkversion_) (lua_State *L, lua_Number ver);
LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e);
LUALIB_API int (luaL_callmeta) (lua_State *L, int obj, const char *e);
LUALIB_API const char *(luaL_tolstring) (lua_State *L, int idx, size_t *len);
LUALIB_API int (luaL_typeerror) (lua_State *L, int narg, const char *tname);
LUALIB_API int (luaL_argerror) (lua_State *L, int numarg, const char *extramsg);
LUALIB_API const char *(luaL_checklstring) (lua_State *L, int numArg,
size_t *l);