diff options
author | Christian Couder <christian.couder@gmail.com> | 2017-02-27 19:00:07 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-03-01 13:24:22 -0800 |
commit | 72dcb7b3607e3349ac3367dc804b62ce1556842b (patch) | |
tree | 82ba8d6b770ea7726a877f8d17f791acbc4391a7 /cache.h | |
parent | 13c0e4c4782976fbda24fdde31d67ef29f41cb34 (diff) | |
download | git-72dcb7b3607e3349ac3367dc804b62ce1556842b.tar.gz |
config: add git_config_get_max_percent_split_change()
This new function will be used in a following commit to get the
value of the "splitIndex.maxPercentChange" config variable.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1822,6 +1822,7 @@ extern int git_config_get_maybe_bool(const char *key, int *dest); extern int git_config_get_pathname(const char *key, const char **dest); extern int git_config_get_untracked_cache(void); extern int git_config_get_split_index(void); +extern int git_config_get_max_percent_split_change(void); /* * This is a hack for test programs like test-dump-untracked-cache to |