diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2010-04-13 01:25:26 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-04-13 06:45:08 +0200 |
commit | 628511a5883fa809e86b34ebc147ac62eb214458 (patch) | |
tree | 2955838c37642ba35e80c530afed396f144616d7 /tag.h | |
parent | tag.c: Correct indentation (diff) | |
download | git-628511a5883fa809e86b34ebc147ac62eb214458.tar.xz git-628511a5883fa809e86b34ebc147ac62eb214458.zip |
tag.h: Remove unused signature field
Its documented as unused. So lets just drop it from the structure
since we haven't ever used it.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'tag.h')
-rw-r--r-- | tag.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -9,7 +9,6 @@ struct tag { struct object object; struct object *tagged; char *tag; - char *signature; /* not actually implemented */ }; extern struct tag *lookup_tag(const unsigned char *sha1); |