| 60 | } |
| 61 | |
| 62 | void swap(CompressedStorage& other) |
| 63 | { |
| 64 | std::swap(m_values, other.m_values); |
| 65 | std::swap(m_indices, other.m_indices); |
| 66 | std::swap(m_size, other.m_size); |
| 67 | std::swap(m_allocatedSize, other.m_allocatedSize); |
| 68 | } |
| 69 | |
| 70 | ~CompressedStorage() |
| 71 | { |