1
0
mirror of https://github.com/git/git.git synced 2024-09-23 07:10:43 +02:00

ref-filter: mark unused parameters in parser callbacks

These are similar to the cases annotated in 5fe9e1ce2f (ref-filter: mark
unused callback parameters, 2023-02-24), but were added after that
commit.

Note that the ahead/behind callback ignores its "atom" parameter, which
is a little unusual, since that struct usually stores the result. But in
this case, the data is stored centrally in ref_array->counts, since we
want to compute all ahead/behinds at once, not per ref.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King 2023-08-29 19:45:06 -04:00 committed by Junio C Hamano
parent c9f7b1e8f2
commit 29c9f2c366

View File

@ -549,7 +549,8 @@ static int signature_atom_parser(struct ref_format *format UNUSED,
return 0;
}
static int trailers_atom_parser(struct ref_format *format, struct used_atom *atom,
static int trailers_atom_parser(struct ref_format *format UNUSED,
struct used_atom *atom,
const char *arg, struct strbuf *err)
{
atom->u.contents.trailer_opts.no_divider = 1;
@ -819,7 +820,7 @@ static int if_atom_parser(struct ref_format *format UNUSED,
return 0;
}
static int rest_atom_parser(struct ref_format *format,
static int rest_atom_parser(struct ref_format *format UNUSED,
struct used_atom *atom UNUSED,
const char *arg, struct strbuf *err)
{
@ -828,7 +829,8 @@ static int rest_atom_parser(struct ref_format *format,
return 0;
}
static int ahead_behind_atom_parser(struct ref_format *format, struct used_atom *atom,
static int ahead_behind_atom_parser(struct ref_format *format,
struct used_atom *atom UNUSED,
const char *arg, struct strbuf *err)
{
struct string_list_item *item;