diff options
author | Kevin Willford <kewillf@microsoft.com> | 2016-07-29 12:19:17 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-07-29 13:23:03 -0700 |
commit | dfb7a1b4d0dafd53bf3980b3bd90668bf8d2a27f (patch) | |
tree | b3b244552ee51397c7464ce0370c1f8d794ef911 /patch-ids.h | |
parent | 05219a1276341e72d8082d76b7f5ed394b7437a4 (diff) | |
download | git-dfb7a1b4d0dafd53bf3980b3bd90668bf8d2a27f.tar.gz |
patch-ids: stop using a hand-rolled hashmap implementation
This change will use the hashmap from the hashmap.h to keep track of the
patch_ids that have been encountered instead of using an internal
implementation. This simplifies the implementation of the patch ids.
Signed-off-by: Kevin Willford <kcwillford@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'patch-ids.h')
-rw-r--r-- | patch-ids.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/patch-ids.h b/patch-ids.h index eeb56b307f..9569ee0d26 100644 --- a/patch-ids.h +++ b/patch-ids.h @@ -2,15 +2,14 @@ #define PATCH_IDS_H struct patch_id { - unsigned char patch_id[20]; + struct hashmap_entry ent; + unsigned char patch_id[GIT_SHA1_RAWSZ]; char seen; }; 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, |