This commit is contained in:
MihailRis
2024-05-05 00:51:45 +03:00
parent f02edcf15a
commit 3f12d4389d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -372,7 +372,7 @@ const std::string lua::LuaState::storeAnonymous() {
return funcName;
}
runnable lua::LuaState::createLambda() {
runnable lua::LuaState::createRunnable() {
auto ptr = reinterpret_cast<ptrdiff_t>(lua_topointer(L, -1));
auto name = util::mangleid(ptr);
lua_getglobal(L, LAMBDAS_TABLE.c_str());