diff options
author | Calvin Wan <calvinwan@google.com> | 2023-06-06 21:48:38 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-06-12 22:49:35 +0200 |
commit | 16b171fda03d9186e58fade7d727d38613938097 (patch) | |
tree | 99a66c27bc6b811bc22077639bf97b50d7b98158 /strbuf.c | |
parent | strbuf: clarify API boundary (diff) | |
download | git-16b171fda03d9186e58fade7d727d38613938097.tar.xz git-16b171fda03d9186e58fade7d727d38613938097.zip |
strbuf: clarify dependency
refs.h was once needed but is no longer so as of 6bab74e7fb8 ("strbuf:
move strbuf_branchname to sha1_name.c", 2010-11-06). strbuf.h was
included thru refs.h, so removing refs.h requires strbuf.h to be added
back.
Signed-off-by: Calvin Wan <calvinwan@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | strbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,8 +5,8 @@ #include "gettext.h" #include "hex.h" #include "object-name.h" -#include "refs.h" #include "repository.h" +#include "strbuf.h" #include "string-list.h" #include "utf8.h" #include "date.h" |