patch-ids: replace the seen indicator with a commit pointer
[gitweb.git] / patch-ids.h
index eeb56b307f602773a41ea3b8cb22d89959c4f9d9..dea1ecda48ba7a43cc56e103eec61d8e12bedd10 100644 (file)
@@ -2,15 +2,14 @@
 #define PATCH_IDS_H
 
 struct patch_id {
-       unsigned char patch_id[20];
-       char seen;
+       struct hashmap_entry ent;
+       unsigned char patch_id[GIT_SHA1_RAWSZ];
+       struct commit *commit;
 };
 
 struct patch_ids {
+       struct hashmap patches;
        struct diff_options diffopts;
-       int nr, alloc;
-       struct patch_id **table;
-       struct patch_id_bucket *patches;
 };
 
 int commit_patch_id(struct commit *commit, struct diff_options *options,