From 3c6adb97bd525a009e437ff80baffea2d751e6ec Mon Sep 17 00:00:00 2001 From: Ariadna Vigo Date: Sat, 19 Dec 2020 23:29:05 +0100 Subject: Removed pointless comment --- tasklst.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tasklst.c b/tasklst.c index a7b0a09..7e8b22f 100644 --- a/tasklst.c +++ b/tasklst.c @@ -89,8 +89,6 @@ task_lst_count_done(TaskLst list) Task * task_lst_get_task(TaskLst list, int i) { - /* TODO: Maybe binary search? */ - Task *ptr; for (ptr = list.first; i > 0; ptr = ptr->next) { -- cgit v1.2.3