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 /fast-import.c | |
parent | commit-reach: move walk methods from commit.c (diff) | |
download | tgif-6404355657fb3ec27668fb88c5175bb22aff3acc.tar.xz |
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 'fast-import.c')
-rw-r--r-- | fast-import.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fast-import.c b/fast-import.c index 3ea5781029..4a93df3839 100644 --- a/fast-import.c +++ b/fast-import.c @@ -171,6 +171,7 @@ Format of STDIN stream: #include "packfile.h" #include "object-store.h" #include "mem-pool.h" +#include "commit-reach.h" #define PACK_ID_BITS 16 #define MAX_PACK_ID ((1<<PACK_ID_BITS)-1) |