From: Shawn O. Pearce Date: Mon, 12 Apr 2010 23:25:26 +0000 (-0700) Subject: tag.h: Remove unused signature field X-Git-Tag: v1.7.2-rc0~125^2~3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=628511a5883fa809e86b34ebc147ac62eb214458;p=git.git 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 Signed-off-by: Junio C Hamano --- diff --git a/tag.h b/tag.h index 7a0cb0070..c437890f7 100644 --- 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);