| 5391 | } |
| 5392 | |
| 5393 | auto operator ==( iterator const& other ) const -> bool { |
| 5394 | return |
| 5395 | m_pos == other.m_pos && |
| 5396 | m_stringIndex == other.m_stringIndex && |
| 5397 | &m_column == &other.m_column; |
| 5398 | } |
| 5399 | auto operator !=( iterator const& other ) const -> bool { |
| 5400 | return !operator==( other ); |
| 5401 | } |
nothing calls this directly
no outgoing calls
no test coverage detected