| 17674 | // MSVC is broken, what a surprise... |
| 17675 | #else |
| 17676 | noexcept(traits_type::is_noexcept) |
| 17677 | #endif |
| 17678 | { |
| 17679 | auto udata = stack::stack_detail::get_as_upvalues<function_type*>(L); |
| 17680 | function_type* fx = udata.first; |
| 17681 | return call_detail::call_wrapped<void, true, false>(L, fx); |
| 17682 | } |
| 17683 | |
| 17684 | static int call(lua_State* L) { |
| 17685 | int nr = detail::typed_static_trampoline<decltype(&real_call), (&real_call)>(L); |
no test coverage detected