Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tag.h
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2010-04-13 03:25:26 +0400
committerJunio C Hamano <gitster@pobox.com>2010-04-13 08:45:08 +0400
commit628511a5883fa809e86b34ebc147ac62eb214458 (patch)
tree2955838c37642ba35e80c530afed396f144616d7 /tag.h
parent2e0052a5eb336dc48856bae0283a23198346b5ac (diff)
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.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/tag.h b/tag.h
index 7a0cb0070d..c437890f79 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);