Postfix version of operator++.
| 10535 | } |
| 10536 | // Postfix version of operator++. |
| 10537 | ParamIterator operator++(int /*unused*/) { |
| 10538 | ParamIteratorInterface<T>* clone = impl_->Clone(); |
| 10539 | impl_->Advance(); |
| 10540 | return ParamIterator(clone); |
| 10541 | } |
| 10542 | bool operator==(const ParamIterator& other) const { |
| 10543 | return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_); |
| 10544 | } |
nothing calls this directly
no test coverage detected