| 266 | using is_transparent = std::true_type; |
| 267 | |
| 268 | bool operator()(const lua_nil_t& lhs, const stack_reference& rhs) const { |
| 269 | return lhs == rhs; |
| 270 | } |
| 271 | |
| 272 | bool operator()(const stack_reference& lhs, const lua_nil_t& rhs) const { |
| 273 | return lhs == rhs; |
nothing calls this directly
no outgoing calls
no test coverage detected