| 663 | } |
| 664 | |
| 665 | inline void copy_store(const basic_var &other) |
| 666 | { |
| 667 | destroy_store(); |
| 668 | if (other.m_dispatcher != nullptr) { |
| 669 | other.m_dispatcher(operators::type::copy, &other, this); |
| 670 | m_dispatcher = other.m_dispatcher; |
| 671 | } |
| 672 | } |
| 673 | |
| 674 | inline void move_store(basic_var &other) |
| 675 | { |
no test coverage detected