commit-reach: use size_t
to track indices in get_reachable_subset()
Similar as with the preceding commit, adapt `get_reachable_subset()` so that it tracks array indices via `size_t` instead of using signed integers to fix a couple of -Wsign-compare warnings. Adapt callers accordingly. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
45843d8f4e
commit
85ee0680e2
@ -95,8 +95,8 @@ int can_all_from_reach(struct commit_list *from, struct commit_list *to,
|
||||
* This method uses the PARENT1 and PARENT2 flags during its operation,
|
||||
* so be sure these flags are not set before calling the method.
|
||||
*/
|
||||
struct commit_list *get_reachable_subset(struct commit **from, int nr_from,
|
||||
struct commit **to, int nr_to,
|
||||
struct commit_list *get_reachable_subset(struct commit **from, size_t nr_from,
|
||||
struct commit **to, size_t nr_to,
|
||||
unsigned int reachable_flag);
|
||||
|
||||
struct ahead_behind_count {
|
||||
|
Reference in New Issue
Block a user