| 514 | } |
| 515 | |
| 516 | bool |
| 517 | BoxArray::operator== (const BoxArray& rhs) const noexcept |
| 518 | { |
| 519 | return m_bat == rhs.m_bat && |
| 520 | (m_ref == rhs.m_ref || m_ref->m_abox == rhs.m_ref->m_abox); |
| 521 | } |
| 522 | |
| 523 | bool |
| 524 | BoxArray::operator!= (const BoxArray& rhs) const noexcept |
nothing calls this directly
no test coverage detected