shortened constructor of set

This commit is contained in:
2021-01-02 16:35:20 +01:00
parent c9352f0785
commit de485b8901

View File

@@ -4,8 +4,7 @@
Set::Set(std::string _name){
name = _name;
first = Node::Dummy();
Node* last = Node::Dummy();
first->next = last;
first->next = Node::Dummy();
}
bool Set::add(int element) { return false; }