| 78 | } |
| 79 | |
| 80 | bool WKTStreamReader::GeometryIterator::operator==(const GeometryIterator& rhs) const |
| 81 | { |
| 82 | // Because the wrapped data is ephemeral, iterators are equal unless we happen to know for sure |
| 83 | // that they're not. |
| 84 | return this->m_is_past_end == rhs.m_is_past_end && this->m_is_at_end == rhs.m_is_at_end; |
| 85 | } |
| 86 | |
| 87 | bool WKTStreamReader::GeometryIterator::operator!=(const GeometryIterator& rhs) const |
| 88 | { |
nothing calls this directly
no outgoing calls
no test coverage detected