| 51 | } |
| 52 | |
| 53 | bool ShellItemArray::Iterator::operator==(Iterator const& rhs) const |
| 54 | { |
| 55 | return rhs.m_ptr == nullptr ? m_index == rhs.m_index : |
| 56 | m_ptr == rhs.m_ptr && m_index == rhs.m_index; |
| 57 | } |
nothing calls this directly
no outgoing calls
no test coverage detected