1
0
mirror of https://github.com/git/git.git synced 2024-09-28 15:01:31 +02:00

name-rev: remove unused typedef

The type alias became unused with bf43abc6e6 (name-rev: use sizeof(*ptr)
instead of sizeof(type) in allocation, 2019-11-12); remove it.

Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
René Scharfe 2020-02-04 22:15:19 +01:00 committed by Junio C Hamano
parent 3e2feb0d64
commit 71620ca86c

@ -16,13 +16,13 @@
*/
#define CUTOFF_DATE_SLOP 86400
typedef struct rev_name {
struct rev_name {
const char *tip_name;
timestamp_t taggerdate;
int generation;
int distance;
int from_tag;
} rev_name;
};
define_commit_slab(commit_rev_name, struct rev_name *);