From d389028695940f74c62e2d8207432feb96f4262a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20=C3=85gren?= Date: Tue, 5 Sep 2017 20:39:59 +0200 Subject: config: remove git_config_maybe_bool MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The function was deprecated in commit 89576613 ("treewide: deprecate git_config_maybe_bool, use git_parse_maybe_bool", 2017-08-07) and has no users. Signed-off-by: Martin Ă…gren Signed-off-by: Junio C Hamano --- config.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'config.c') diff --git a/config.c b/config.c index 777527dae..f49cd2a01 100644 --- a/config.c +++ b/config.c @@ -956,11 +956,6 @@ int git_parse_maybe_bool(const char *value) return -1; } -int git_config_maybe_bool(const char *name, const char *value) -{ - return git_parse_maybe_bool(value); -} - int git_config_bool_or_int(const char *name, const char *value, int *is_bool) { int v = git_parse_maybe_bool_text(value); -- cgit v1.2.1