mirror of
https://github.com/13hannes11/UU_la_parallel_programming_practical_assignments.git
synced 2024-09-04 00:50:58 +02:00
shortened constructor of set
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user