From 0b29ddbbe12ab08d84d163d7af4e6bbb809904e0 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Tue, 13 Feb 2024 13:22:11 -0500 Subject: [PATCH] remove the underscore --- lectures/11_list_implementation/list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;