do_for_each_entry_in_dir(): eliminate offset argument

It was never used.

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Michael Haggerty
2017-04-16 08:41:36 +02:00
committed by Junio C Hamano
parent e3bf2989ca
commit 5c7bba77b2
3 changed files with 10 additions and 11 deletions

View File

@ -258,13 +258,12 @@ struct ref_iterator *cache_ref_iterator_begin(struct ref_dir *dir);
typedef int each_ref_entry_fn(struct ref_entry *entry, void *cb_data);
/*
* Call fn for each reference in dir that has index in the range
* offset <= index < dir->nr. Recurse into subdirectories that are in
* that index range, sorting them before iterating. This function
* does not sort dir itself; it should be sorted beforehand. fn is
* called for all references, including broken ones.
* Call `fn` for each reference in `dir`. Recurse into subdirectories,
* sorting them before iterating. This function does not sort `dir`
* itself; it should be sorted beforehand. `fn` is called for all
* references, including broken ones.
*/
int do_for_each_entry_in_dir(struct ref_dir *dir, int offset,
int do_for_each_entry_in_dir(struct ref_dir *dir,
each_ref_entry_fn fn, void *cb_data);
/*