diff options
author | chai <chaifix@163.com> | 2018-12-10 11:46:29 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-12-10 11:46:29 +0800 |
commit | ce8e259441410aba3f2345333003032ed9c45d65 (patch) | |
tree | b28b8a30e2b30081a2f9bdbf0a142099f7a8cd6f /src/lua/modules/time/je_lua_time.cpp | |
parent | b1dfdae7a071407ef5e2d56f2203f96e6ba6068d (diff) |
*删除shared的lua类型信息
Diffstat (limited to 'src/lua/modules/time/je_lua_time.cpp')
-rw-r--r-- | src/lua/modules/time/je_lua_time.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/modules/time/je_lua_time.cpp b/src/lua/modules/time/je_lua_time.cpp index 1d8b852..cd49978 100644 --- a/src/lua/modules/time/je_lua_time.cpp +++ b/src/lua/modules/time/je_lua_time.cpp @@ -33,7 +33,7 @@ namespace JinEngine LUA_IMPLEMENT int l_newTimer(lua_State* L) { - Shared* shrTimer = new Shared(new Timer(), Jin_Lua_Timer); + Shared* shrTimer = new Shared(new Timer()); luax_newinstance(L, Jin_Lua_Timer, shrTimer); return 1; } |