| 61 | |
| 62 | template <typename Visitor> |
| 63 | void map(Visitor& visit) { |
| 64 | visit |
| 65 | (m_positions, "m_positions") |
| 66 | (m_block_inventory, "m_block_inventory") |
| 67 | (m_subblock_inventory, "m_subblock_inventory") |
| 68 | (m_overflow_positions, "m_overflow_positions") |
| 69 | ; |
| 70 | } |
| 71 | |
| 72 | void swap(darray& other) { |
| 73 | std::swap(other.m_positions, m_positions); |
no outgoing calls
no test coverage detected