| 263 | } |
| 264 | |
| 265 | Projection::Iterator Projection::Iterator::operator++(int) { |
| 266 | Projection::Iterator tmp = *this; |
| 267 | operator++(); |
| 268 | return tmp; |
| 269 | } |
| 270 | |
| 271 | bool Projection::Iterator::operator==(Projection::Iterator const& other) const { |
| 272 | return this->path == other.path && this->stack == other.stack; |
nothing calls this directly
no outgoing calls
no test coverage detected