summaryrefslogtreecommitdiff
path: root/merge-ort.c
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2020-12-03 15:59:40 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-12-13 22:21:03 (GMT)
commit67845745c1ab7dcce72116fb58f99630d14e12cc (patch)
treee1a0a38fd9c4cc97487b454598f3315934336b30 /merge-ort.c
parent89422d29b1d63004683aaa6d11faa65ba734d46f (diff)
downloadgit-67845745c1ab7dcce72116fb58f99630d14e12cc.zip
git-67845745c1ab7dcce72116fb58f99630d14e12cc.tar.gz
git-67845745c1ab7dcce72116fb58f99630d14e12cc.tar.bz2
merge-ort: add a few includes
Include blob.h for definition of blob_type, and commit-reach.h for declarations of get_merge_bases() and in_merge_bases(). While none of these are used yet, we want to avoid cross-dependencies in the next three series of patches for merge-ort and merge them at the end; adding these "#include"s now avoids textual conflicts. Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'merge-ort.c')
-rw-r--r--merge-ort.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/merge-ort.c b/merge-ort.c
index 51b0493..ba3ce8d 100644
--- a/merge-ort.c
+++ b/merge-ort.c
@@ -17,7 +17,9 @@
#include "cache.h"
#include "merge-ort.h"
+#include "blob.h"
#include "cache-tree.h"
+#include "commit-reach.h"
#include "diff.h"
#include "diffcore.h"
#include "dir.h"