| 44 | } |
| 45 | |
| 46 | friend bool operator!=(const VectorIterator& l, const VectorIterator& r){ |
| 47 | if(l.pos != r.pos){ |
| 48 | return true; |
| 49 | } else { |
| 50 | return false; |
| 51 | } |
| 52 | } |
| 53 | }; |
| 54 | private: |
| 55 | T* data = nullptr; |
nothing calls this directly
no outgoing calls
no test coverage detected