From 6f3c772939463c97a4a8a8371db42b8f4b181c68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 19 Feb 2019 02:31:35 +0100 Subject: No idea, to tired. --- linked_list.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'linked_list.cpp') 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::operator+= (llist& 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; -- cgit v1.2.3