From: a bellenir Date: Thu, 14 Aug 2014 07:54:40 +0000 (+0000) Subject: rm confusing comment X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=738c8bcc01bc58b533210a38baf385b68a621cb5;p=projs%2Flibcds.git rm confusing comment --- diff --git a/source/rbt/rbt.c b/source/rbt/rbt.c index 56b3144..d99e05e 100644 --- a/source/rbt/rbt.c +++ b/source/rbt/rbt.c @@ -112,7 +112,6 @@ static void rbt_ins_rebalance(rbt_t* tree, rbt_node_t* node, direction_t heavy_s grandparent->color = RED; } -//NODE:the node to be inserted static void rbt_ins_recolor(rbt_t* tree, rbt_node_t* node){ rbt_node_t* parent = node->parent; rbt_node_t* grandparent = (parent ? parent->parent : NULL);