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:

committed by
Junio C Hamano

parent
3e2feb0d64
commit
71620ca86c
@ -16,13 +16,13 @@
|
|||||||
*/
|
*/
|
||||||
#define CUTOFF_DATE_SLOP 86400
|
#define CUTOFF_DATE_SLOP 86400
|
||||||
|
|
||||||
typedef struct rev_name {
|
struct rev_name {
|
||||||
const char *tip_name;
|
const char *tip_name;
|
||||||
timestamp_t taggerdate;
|
timestamp_t taggerdate;
|
||||||
int generation;
|
int generation;
|
||||||
int distance;
|
int distance;
|
||||||
int from_tag;
|
int from_tag;
|
||||||
} rev_name;
|
};
|
||||||
|
|
||||||
define_commit_slab(commit_rev_name, struct rev_name *);
|
define_commit_slab(commit_rev_name, struct rev_name *);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user