| 10296 | value_.reset(); |
| 10297 | } |
| 10298 | virtual ParamIteratorInterface<T>* Clone() const { |
| 10299 | return new Iterator(*this); |
| 10300 | } |
| 10301 | // We need to use cached value referenced by iterator_ because *iterator_ |
| 10302 | // can return a temporary object (and of type other then T), so just |
| 10303 | // having "return &*iterator_;" doesn't work. |
nothing calls this directly
no outgoing calls
no test coverage detected