mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
Formatting and a few new constants.
This commit is contained in:
parent
95c63565a8
commit
c07bbd248c
|
@ -33,11 +33,11 @@ private:
|
|||
call_status stats = call_status::yielded;
|
||||
|
||||
void luacall(std::ptrdiff_t argcount, std::ptrdiff_t) {
|
||||
#if SOL_LUA_VERSION < 503
|
||||
#if SOL_LUA_VERSION < 502
|
||||
stats = static_cast<call_status>(lua_resume(lua_state(), static_cast<int>(argcount)));
|
||||
#else
|
||||
stats = static_cast<call_status>(lua_resume(lua_state(), nullptr, static_cast<int>(argcount)));
|
||||
#endif // Lua 5.3
|
||||
#endif // Lua 5.1 compat
|
||||
}
|
||||
|
||||
template<std::size_t... I, typename... Ret>
|
||||
|
|
Loading…
Reference in New Issue
Block a user