t-hashmap: mark unused parameters in callback function

The t_intern() setup function doesn't operate on a hashmap, so it
ignores its parameters. But we can't drop them since it is passed as a
pointer to setup(), so we have to match the other setup functions. Mark
them to silence -Wunused-parameter.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King 2024-08-17 04:24:47 -04:00 committed by Junio C Hamano
parent 4695c3f3a9
commit f24a9b78a9

View file

@ -322,7 +322,8 @@ static void t_alloc(struct hashmap *map, unsigned int ignore_case)
free(removed);
}
static void t_intern(struct hashmap *map, unsigned int ignore_case)
static void t_intern(struct hashmap *map UNUSED,
unsigned int ignore_case UNUSED)
{
const char *values[] = { "value1", "Value1", "value2", "value2" };