Copy the values stored in rhs.m_data to m_data. m_data pointers are not shared in this case
| 216 | /// Copy the values stored in rhs.m_data to m_data. |
| 217 | /// m_data pointers are not shared in this case |
| 218 | Boxed_Value assign(const Boxed_Value &rhs) |
| 219 | { |
| 220 | (*m_data) = (*rhs.m_data); |
| 221 | return *this; |
| 222 | } |
| 223 | |
| 224 | const Type_Info &get_type_info() const noexcept |
| 225 | { |
no outgoing calls
no test coverage detected