Code

tag.h: Remove unused signature field
authorShawn O. Pearce <spearce@spearce.org>
Mon, 12 Apr 2010 23:25:26 +0000 (16:25 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 13 Apr 2010 04:45:08 +0000 (21:45 -0700)
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>
tag.h

diff --git a/tag.h b/tag.h
index 7a0cb0070d46ba8c49d71029dc0704188805ea62..c437890f7950a0d2ca9e088551f31cdcf1eaec2d 100644 (file)
--- a/tag.h
+++ b/tag.h
@@ -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);