diff --git a/container/SinglyLinkedList.h b/container/SinglyLinkedList.h index 7fffdaac..79562cd4 100644 --- a/container/SinglyLinkedList.h +++ b/container/SinglyLinkedList.h @@ -112,6 +112,8 @@ public: setEnd->setEnd(); } + // SHOULDDO: Insertion operation ? + protected: LinkedElement *start = nullptr; };