| 10713 | value_.reset(); |
| 10714 | } |
| 10715 | ParamIteratorInterface<T>* Clone() const override { |
| 10716 | return new Iterator(*this); |
| 10717 | } |
| 10718 | // We need to use cached value referenced by iterator_ because *iterator_ |
| 10719 | // can return a temporary object (and of type other then T), so just |
| 10720 | // having "return &*iterator_;" doesn't work. |
nothing calls this directly
no outgoing calls
no test coverage detected