diff options
author | Linus Arver <linusa@google.com> | 2023-11-02 21:51:17 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-11-03 00:26:55 +0100 |
commit | 3ca86adc2db4cd184f38596d4ba44c6870b2a7e4 (patch) | |
tree | 8b14731b31d1a05a84ea03889e203006baf2f586 /strvec.c | |
parent | Git 2.42 (diff) | |
download | git-3ca86adc2db4cd184f38596d4ba44c6870b2a7e4.tar.xz git-3ca86adc2db4cd184f38596d4ba44c6870b2a7e4.zip |
strvec: drop unnecessary include of hex.h
In 41771fa435 (cache.h: remove dependence on hex.h; make other files
include it explicitly, 2023-02-24) we added this as part of a larger
mechanical refactor. But strvec doesn't actually depend on hex.h, so
remove it.
Signed-off-by: Linus Arver <linusa@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'strvec.c')
-rw-r--r-- | strvec.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1,6 +1,5 @@ #include "git-compat-util.h" #include "strvec.h" -#include "hex.h" #include "strbuf.h" const char *empty_strvec[] = { NULL }; |