From 0db0250108d1ec333661fec94b9d0977e6fe421c Mon Sep 17 00:00:00 2001 From: condret Date: Wed, 17 Mar 2021 18:11:16 +0100 Subject: [PATCH] Remove unused type FcnTreeIter ##anal --- libr/anal/fcn.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libr/anal/fcn.c b/libr/anal/fcn.c index 9f88b73b1b..8841fcbab4 100644 --- a/libr/anal/fcn.c +++ b/libr/anal/fcn.c @@ -31,12 +31,6 @@ #define EXISTS(x, ...) snprintf (key, sizeof (key) - 1, x, ## __VA_ARGS__), sdb_exists (DB, key) #define SETKEY(x, ...) snprintf (key, sizeof (key) - 1, x, ## __VA_ARGS__); -typedef struct fcn_tree_iter_t { - int len; - RBNode *cur; - RBNode *path[R_RBTREE_MAX_HEIGHT]; -} FcnTreeIter; - R_API const char *r_anal_fcntype_tostring(int type) { switch (type) { case R_ANAL_FCN_TYPE_NULL: return "null";