| 40 | } |
| 41 | |
| 42 | bool Route::Iterator::operator==(Iterator const &other) const |
| 43 | { |
| 44 | return nodes_ == other.nodes_ && idx_ == other.idx_; |
| 45 | } |
| 46 | |
| 47 | Route::Node *Route::Iterator::operator*() const { return (*nodes_)[idx_]; } |
| 48 |
nothing calls this directly
no test coverage detected