aboutsummaryrefslogtreecommitdiff
path: root/linked_list.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linked_list.cpp')
-rw-r--r--linked_list.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/linked_list.cpp b/linked_list.cpp
index d4bd5a91..b30458c9 100644
--- a/linked_list.cpp
+++ b/linked_list.cpp
@@ -66,8 +66,6 @@ void llist<T>::operator+= (llist<T>& other) {
FIRST(other)->before = LAST(this);
/* Free the two now not needed end links. */
- // free(other->head);
- // free(other->tail);
delete other->head;
delete other->tail;