| 28 | } |
| 29 | |
| 30 | bool operator==(Iterator rhs) const |
| 31 | { |
| 32 | std::lock_guard lock{ m_lock }; |
| 33 | return m_iter == rhs; |
| 34 | } |
| 35 | |
| 36 | auto operator<=>(TaskFileIterator<Iterator> const& rhs) const |
| 37 | { |
nothing calls this directly
no outgoing calls
no test coverage detected