mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-07 23:24:09 +00:00
Use FuncState typedef in favor of struct.
This commit is contained in:
parent
c5feda2d53
commit
a6b7952f7e
@ -2219,7 +2219,7 @@ static void parse_chunk(LexState *ls)
|
|||||||
/* Entry point of bytecode parser. */
|
/* Entry point of bytecode parser. */
|
||||||
GCproto *lj_parse(LexState *ls)
|
GCproto *lj_parse(LexState *ls)
|
||||||
{
|
{
|
||||||
struct FuncState fs;
|
FuncState fs;
|
||||||
GCproto *pt;
|
GCproto *pt;
|
||||||
lua_State *L = ls->L;
|
lua_State *L = ls->L;
|
||||||
ls->chunkname = lj_str_newz(L, ls->chunkarg);
|
ls->chunkname = lj_str_newz(L, ls->chunkarg);
|
||||||
|
Loading…
Reference in New Issue
Block a user