| 67 | } |
| 68 | |
| 69 | friend bool operator!=(const ListIterator& l, const ListIterator& r){ |
| 70 | if(l.node != r.node){ |
| 71 | return true; |
| 72 | } else { |
| 73 | return false; |
| 74 | } |
| 75 | } |
| 76 | }; |
| 77 | |
| 78 | // Type is required to be a pointer with the members next and prev |
nothing calls this directly
no outgoing calls
no test coverage detected