| 14674 | |
| 14675 | template <typename T> |
| 14676 | bool is_stack(std::true_type) const { |
| 14677 | return stack::check<T>(base_t::lua_state(), base_t::stack_index(), no_panic); |
| 14678 | } |
| 14679 | |
| 14680 | template <typename T> |
| 14681 | bool is_stack(std::false_type) const { |
nothing calls this directly
no test coverage detected