mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
diff: mark unused parameters in callbacks
The diff code provides a format_callback interface, but not every callback needs each parameter (e.g., the "opt" and "data" parameters are frequently left unused). Likewise for the output_prefix callback, the low-level change/add_remove interfaces, the callbacks used by xdi_diff(), etc. Mark unused arguments in the callback implementations to quiet -Wunused-parameter. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
8157ed4046
commit
61bdc7c5d8
@@ -438,7 +438,7 @@ static char short_submodule_status(struct wt_status_change_data *d)
|
||||
}
|
||||
|
||||
static void wt_status_collect_changed_cb(struct diff_queue_struct *q,
|
||||
struct diff_options *options,
|
||||
struct diff_options *options UNUSED,
|
||||
void *data)
|
||||
{
|
||||
struct wt_status *s = data;
|
||||
@@ -525,7 +525,7 @@ static int unmerged_mask(struct index_state *istate, const char *path)
|
||||
}
|
||||
|
||||
static void wt_status_collect_updated_cb(struct diff_queue_struct *q,
|
||||
struct diff_options *options,
|
||||
struct diff_options *options UNUSED,
|
||||
void *data)
|
||||
{
|
||||
struct wt_status *s = data;
|
||||
|
||||
Reference in New Issue
Block a user