aboutsummaryrefslogtreecommitdiff
path: root/linked_list.cpp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-02-19 02:31:35 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-19 10:18:31 +0100
commit6f3c772939463c97a4a8a8371db42b8f4b181c68 (patch)
treef8010e9e49696505e22cd0dff3bd84089392a240 /linked_list.cpp
parentI somehow got stuff to bulid, now it just doesn't link. (diff)
downloadcalp-6f3c772939463c97a4a8a8371db42b8f4b181c68.tar.gz
calp-6f3c772939463c97a4a8a8371db42b8f4b181c68.tar.xz
No idea, to tired.
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;