From 18d1e701b70014d37a2715ccce0791114587709e Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sun, 4 Dec 2005 21:13:57 -0800 Subject: [PATCH] struct tree: remove unused field "parent" The field is not used anymore, after the recent ls-tree rewrite. Signed-off-by: Junio C Hamano --- tree.c | 1 - tree.h | 1 - 2 files changed, 2 deletions(-) diff --git a/tree.c b/tree.c index 043f0321..e7a7b719 100644 --- a/tree.c +++ b/tree.c @@ -200,7 +200,6 @@ int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size) } if (obj) n_refs++; - entry->parent = NULL; /* needs to be filled by the user */ *list_p = entry; list_p = &entry->next; } diff --git a/tree.h b/tree.h index 768e5e9e..57a5bf71 100644 --- a/tree.h +++ b/tree.h @@ -18,7 +18,6 @@ struct tree_entry_list { struct tree *tree; struct blob *blob; } item; - struct tree_entry_list *parent; }; struct tree { -- 2.11.0