Merge branch 'ma/remove-config-maybe-bool'

Finishing touches to a recent topic.

* ma/remove-config-maybe-bool:
  config: remove git_config_maybe_bool
This commit is contained in:
Junio C Hamano
2017-09-19 10:47:55 +09:00
3 changed files with 0 additions and 10 deletions

View File

@ -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);