| 14722 | |
| 14723 | template <bool invert_and_pop = false> |
| 14724 | basic_object(std::integral_constant<bool, invert_and_pop>, lua_State* L, int index = -1) noexcept |
| 14725 | : base_t(L, index) { |
| 14726 | if (invert_and_pop) { |
| 14727 | lua_pop(L, -index); |
| 14728 | } |
| 14729 | } |
| 14730 | |
| 14731 | protected: |
| 14732 | basic_object(detail::no_safety_tag, lua_nil_t n) : base_t(n) { |
no test coverage detected