diff options
author | Elijah Newren <newren@gmail.com> | 2023-02-24 01:09:27 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-02-24 02:25:29 +0100 |
commit | 41771fa435a44ff8be3f23753bde0309a2a65b03 (patch) | |
tree | b0e8d11299caa6a01b56bdd5b367ed0b51ad087a /submodule-config.c | |
parent | hex.h: move some hex-related declarations from cache.h (diff) | |
download | git-41771fa435a44ff8be3f23753bde0309a2a65b03.tar.xz git-41771fa435a44ff8be3f23753bde0309a2a65b03.zip |
cache.h: remove dependence on hex.h; make other files include it explicitly
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'submodule-config.c')
-rw-r--r-- | submodule-config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/submodule-config.c b/submodule-config.c index bb7c35fc31..89a7bf0a93 100644 --- a/submodule-config.c +++ b/submodule-config.c @@ -1,6 +1,7 @@ #include "cache.h" #include "alloc.h" #include "dir.h" +#include "hex.h" #include "repository.h" #include "config.h" #include "submodule-config.h" |