| 25486 | using base_t::lua_state; |
| 25487 | |
| 25488 | basic_lightuserdata() noexcept = default; |
| 25489 | template <typename T, meta::enable<meta::neg<std::is_same<meta::unqualified_t<T>, basic_lightuserdata>>, meta::neg<std::is_same<base_t, stack_reference>>, is_lua_reference<meta::unqualified_t<T>>> = meta::enabler> |
| 25490 | basic_lightuserdata(T&& r) noexcept |
| 25491 | : base_t(std::forward<T>(r)) { |
nothing calls this directly
no test coverage detected