From d4273d8e3fce563c35843b60aad444ad9502fda9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E4=B9=8B=E9=98=B3?= <51194195+luoliwoshang@users.noreply.github.com> Date: Tue, 17 Sep 2024 09:01:44 +0800 Subject: [PATCH] remove redundant fn body --- c/lua/lauxlib.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/lua/lauxlib.go b/c/lua/lauxlib.go index df7aac0d..e12978ae 100644 --- a/c/lua/lauxlib.go +++ b/c/lua/lauxlib.go @@ -34,7 +34,7 @@ func (L *State) Loadfile(filename *c.Char) c.Int { return L.Loadfilex(filename, func (L *State) Loadstring(s *c.Char) c.Int { return 0 } //go:linkname Newstate__1 C.luaL_newstate -func Newstate__1() *State { return nil } +func Newstate__1() *State // /* // ** ===============================================================