lua

A copy of the Lua development repository
Log | Files | Refs | README

commit ed795d5ff4cc76195aa24ec4c0a50a2e5b835c81
parent 282d67d8fcd3b06e21d27f3acb8f9efdd992c937
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Wed, 19 Mar 2014 15:50:51 -0300

detail (removed unused prototype)

Diffstat:
Mlgc.h | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lgc.h b/lgc.h @@ -1,5 +1,5 @@ /* -** $Id: lgc.h,v 2.80 2014/02/14 16:43:14 roberto Exp roberto $ +** $Id: lgc.h,v 2.81 2014/02/18 13:46:26 roberto Exp roberto $ ** Garbage Collector ** See Copyright Notice in lua.h */ @@ -130,7 +130,6 @@ LUAI_FUNC void luaC_fullgc (lua_State *L, int isemergency); LUAI_FUNC GCObject *luaC_newobj (lua_State *L, int tt, size_t sz); LUAI_FUNC void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v); LUAI_FUNC void luaC_barrierback_ (lua_State *L, GCObject *o); -LUAI_FUNC void luaC_barrierproto_ (lua_State *L, Proto *p, Closure *c); LUAI_FUNC void luaC_upvalbarrier_ (lua_State *L, UpVal *uv); LUAI_FUNC void luaC_checkfinalizer (lua_State *L, GCObject *o, Table *mt); LUAI_FUNC void luaC_upvdeccount (lua_State *L, UpVal *uv);