From a8428d7262648c2e0b8bc84e3c92029703d0c65e Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Fri, 2 Feb 2024 13:50:30 -0500 Subject: [PATCH] remove unused functions --- lectures/08_vector_implementation/README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/lectures/08_vector_implementation/README.md b/lectures/08_vector_implementation/README.md index ac0f6cc..eaf48d8 100644 --- a/lectures/08_vector_implementation/README.md +++ b/lectures/08_vector_implementation/README.md @@ -31,8 +31,6 @@ public: // MEMBER FUNCTIONS AND OTHER OPERATORS T& operator[] (unsigned int i); void push_back(const T& t); -void clear(); -bool empty() const; unsigned int size() const; ```