diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2018-11-10 06:48:59 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-11-12 06:50:05 +0100 |
commit | 69d2cfe6e84fbcd77872191b6f433d38362c23d6 (patch) | |
tree | 5c42b9a92f9fbb68c2f1643217f8e7d546de5516 /bisect.h | |
parent | blame.c: remove implicit dependency the_repository (diff) | |
download | git-69d2cfe6e84fbcd77872191b6f433d38362c23d6.tar.xz git-69d2cfe6e84fbcd77872191b6f433d38362c23d6.zip |
bisect.c: remove the_repository reference
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'bisect.h')
-rw-r--r-- | bisect.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2,6 +2,7 @@ #define BISECT_H struct commit_list; +struct repository; /* * Find bisection. If something is found, `reaches` will be the number of @@ -30,7 +31,9 @@ struct rev_list_info { const char *header_prefix; }; -extern int bisect_next_all(const char *prefix, int no_checkout); +extern int bisect_next_all(struct repository *r, + const char *prefix, + int no_checkout); extern int estimate_bisect_steps(int all); |