diff options
author | Linus Torvalds <torvalds@osdl.org> | 2006-05-29 12:16:46 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-29 19:05:06 -0700 |
commit | 3a7c352bd0ecac4b4c96c0995d61de9ef8d814f9 (patch) | |
tree | 3ced54e201e6968c284baea7f996a4a45554caec /tree.h | |
parent | Make "struct tree" contain the pointer to the tree buffer (diff) | |
download | tgif-3a7c352bd0ecac4b4c96c0995d61de9ef8d814f9.tar.xz |
Make "tree_entry" have a SHA1 instead of a union of object pointers
This is preparatory work for further cleanups, where we try to make
tree_entry look more like the more efficient tree-walk descriptor.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'tree.h')
-rw-r--r-- | tree.h | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -13,11 +13,7 @@ struct tree_entry_list { unsigned zeropad : 1; unsigned int mode; const char *name; - union { - struct object *any; - struct tree *tree; - struct blob *blob; - } item; + const unsigned char *sha1; }; struct tree { @@ -37,7 +33,7 @@ int parse_tree(struct tree *tree); struct tree *parse_tree_indirect(const unsigned char *sha1); #define READ_TREE_RECURSIVE 1 -typedef int (*read_tree_fn_t)(unsigned char *, const char *, int, const char *, unsigned int, int); +typedef int (*read_tree_fn_t)(const unsigned char *, const char *, int, const char *, unsigned int, int); extern int read_tree_recursive(struct tree *tree, const char *base, int baselen, |