rbtree: Delete unused RBTREE_NODE_*() macros

This commit is contained in:
Sebastian Huber
2015-08-31 09:59:42 +02:00
parent ddb6a49bdf
commit f71e67dc56
-12
View File
@@ -156,18 +156,6 @@ typedef struct {
#define RBTREE_DEFINE_EMPTY( name ) \
RBTree_Control name = RBTREE_INITIALIZER_EMPTY( name )
/**
* @brief RBTree_Node initializer for an empty node with designator @a name.
*/
#define RBTREE_NODE_INITIALIZER_EMPTY( name ) \
{ NULL, { NULL, NULL }, RBT_RED }
/**
* @brief RBTree definition for an empty rbtree with designator @a name.
*/
#define RBTREE_NODE_DEFINE_EMPTY( name ) \
RBTree_Node name = RBTREE_NODE_INITIALIZER_EMPTY( name )
/**
* @brief Tries to find a node for the specified key in the tree.
*