diff --git a/lectures/11_list_implementation/list.h b/lectures/11_list_implementation/list.h index e1492c1..cff9a75 100644 --- a/lectures/11_list_implementation/list.h +++ b/lectures/11_list_implementation/list.h @@ -50,7 +50,7 @@ class list_iterator { return (this->ptr != other.ptr); } - // the dslist class needs access to the private ptr_ member variable + // the dslist class needs access to the private ptr member variable friend class dslist; private: Node* ptr;