diff --git a/container/ArrayList.h b/container/ArrayList.h index 163185698..6bd5c1d5a 100644 --- a/container/ArrayList.h +++ b/container/ArrayList.h @@ -131,19 +131,6 @@ public: const T *operator->() const { return value; } - - -// //SHOULDDO this should be implemented as non-member -// bool operator==(const typename -// ArrayList::Iterator& other) const { -// return (value == other.value); -// } -// -// //SHOULDDO this should be implemented as non-member -// bool operator!=(const typename -// ArrayList::Iterator& other) const { -// return !(*this == other); -// } }; friend bool operator==(const ArrayList::Iterator& lhs,