| 18773 | namespace sol { |
| 18774 | template <typename... Ret, typename... Args> |
| 18775 | decltype(auto) stack_proxy::call(Args&&... args) { |
| 18776 | stack_function sf(this->lua_state(), this->stack_index()); |
| 18777 | return sf.template call<Ret...>(std::forward<Args>(args)...); |
| 18778 | } |
| 18779 | |
| 18780 | inline protected_function_result::protected_function_result(unsafe_function_result&& o) noexcept |
| 18781 | : L(o.lua_state()), index(o.stack_index()), returncount(o.return_count()), popcount(o.return_count()), err(o.status()) { |
no test coverage detected