From 9a9fdd1ceed2bd60aef25aedc271800956b408a7 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Thu, 7 Jul 2022 17:24:05 -0700 Subject: [PATCH] circogen: remove commented out 'cleanBlocklist' This was commented out when first committed in the initial revision, 256ef66663ca0c072554ee3f5e7971911031b3c7. It has never been uncommented or used. --- lib/circogen/block.c | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/lib/circogen/block.c b/lib/circogen/block.c index acd20bd56..54ebb5c34 100644 --- a/lib/circogen/block.c +++ b/lib/circogen/block.c @@ -20,21 +20,6 @@ void initBlocklist(blocklist_t * bl) bl->last = NULL; } -/* -void -cleanBlocklist(blocklist_t* sp) -{ - block_t* bp; - block_t* temp; - - if (!sp) return; - for(bp = sp->first; bp; bp = temp) { - temp = bp->next; - freeBlock(bp); - } -} -*/ - block_t *mkBlock(Agraph_t * g) { block_t *sn; -- 2.40.0