| 672 | } |
| 673 | |
| 674 | inline void move_store(basic_var &other) |
| 675 | { |
| 676 | destroy_store(); |
| 677 | if (other.m_dispatcher != nullptr) { |
| 678 | other.m_dispatcher(operators::type::move, &other, this); |
| 679 | m_dispatcher = other.m_dispatcher; |
| 680 | other.m_dispatcher = nullptr; |
| 681 | } |
| 682 | } |
| 683 | |
| 684 | basic_var() noexcept = default; |
| 685 |
no test coverage detected