| 10543 | |
| 10544 | template <typename T> |
| 10545 | int member_default_to_string(std::true_type, lua_State* L) { |
| 10546 | decltype(auto) ts = stack::get<T>(L, 1).to_string(); |
| 10547 | return stack::push(L, std::forward<decltype(ts)>(ts)); |
| 10548 | } |
| 10549 | |
| 10550 | template <typename T> |
| 10551 | int member_default_to_string(std::false_type, lua_State* L) { |
nothing calls this directly
no test coverage detected