| 12 | const Vector<T>& vector; |
| 13 | public: |
| 14 | VectorIterator(const Vector<T>& newVector) : vector(newVector) {}; |
| 15 | VectorIterator(const VectorIterator& it) : vector(it.vector) { pos = it.pos; }; |
| 16 | |
| 17 | VectorIterator& operator++(){ |
nothing calls this directly
no outgoing calls
no test coverage detected