diff options
author | Derrick Stolee <dstolee@microsoft.com> | 2018-07-20 16:33:04 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-07-20 15:38:54 -0700 |
commit | 6404355657fb3ec27668fb88c5175bb22aff3acc (patch) | |
tree | fe54e41041c355ae014cb00d9e513be157a15ac9 /http-push.c | |
parent | 5227c385667cadd3b34668329016755181fa98ea (diff) | |
download | git-6404355657fb3ec27668fb88c5175bb22aff3acc.tar.gz |
commit.h: remove method declarations
These methods are now declared in commit-reach.h. Remove them from
commit.h and add new include statements in all files that require these
declarations.
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http-push.c')
-rw-r--r-- | http-push.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http-push.c b/http-push.c index 5eaf551b51..91fdc7e1d5 100644 --- a/http-push.c +++ b/http-push.c @@ -14,7 +14,7 @@ #include "argv-array.h" #include "packfile.h" #include "object-store.h" - +#include "commit-reach.h" #ifdef EXPAT_NEEDS_XMLPARSE_H #include <xmlparse.h> |