diff options
author | Carlos Martín Nieto <cmn@dwim.me> | 2015-05-09 11:22:57 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@dwim.me> | 2015-06-22 17:02:56 +0200 |
commit | c4e3a3dbfa3abbe155d47d3040ecbb2c46242a48 (patch) | |
tree | 8d4bcafb33eab78e63176d563c32bcd69e61005e /src/submodule.h | |
parent | 15c381031391cbc24691f9bd009b991eaa440d25 (diff) | |
download | libgit2-c4e3a3dbfa3abbe155d47d3040ecbb2c46242a48.tar.gz |
submodule: handle writing out all enum values for settings
We currently do not handle those enum values which require us to set
"true" or unset variables in all cases. Use a common function which does
understand this by looking at our mapping directly.
Diffstat (limited to 'src/submodule.h')
-rw-r--r-- | src/submodule.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/submodule.h b/src/submodule.h index d67796193..2ef2031b3 100644 --- a/src/submodule.h +++ b/src/submodule.h @@ -143,8 +143,4 @@ extern int git_submodule_parse_ignore( extern int git_submodule_parse_update( git_submodule_update_t *out, const char *value); -extern const char *git_submodule_ignore_to_str(git_submodule_ignore_t); -extern const char *git_submodule_update_to_str(git_submodule_update_t); -extern const char *git_submodule_recurse_to_str(git_submodule_recurse_t); - #endif |