fixing errors, making cuts

This commit is contained in:
n0ffie 2025-01-11 03:59:50 +01:00
parent 54703852e7
commit 2515509e55
6 changed files with 15 additions and 15 deletions

View file

@ -122,12 +122,11 @@ struct linked_list
next->first = this;
return *next;
}
next->put(val);
if (first)
next->first = first;
else
next->first = this;
return *next;
return next->put(val);
}
size_t depth()