| 5882 | |
| 5883 | template <typename Fx, typename... Args> |
| 5884 | int trampoline(lua_State* L, Fx&& f, Args&&... args) noexcept { |
| 5885 | return f(L, std::forward<Args>(args)...); |
| 5886 | } |
| 5887 | |
| 5888 | inline int c_trampoline(lua_State* L, lua_CFunction f) noexcept { |
| 5889 | return trampoline(L, f); |
no test coverage detected