summaryrefslogtreecommitdiff
path: root/apply.h
diff options
context:
space:
mode:
authorDenton Liu <liu.denton@gmail.com>2019-09-25 08:20:53 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-09-28 05:04:16 (GMT)
commit97b989ee3a9add534d561aefca0f3b65ec26a924 (patch)
treedd47ad23f0fe6c3b4c40e7e8572a7711345de479 /apply.h
parent4c86140027f4a0d2caaa3ab4bd8bfc5ce3c11c8a (diff)
downloadgit-97b989ee3a9add534d561aefca0f3b65ec26a924.zip
git-97b989ee3a9add534d561aefca0f3b65ec26a924.tar.gz
git-97b989ee3a9add534d561aefca0f3b65ec26a924.tar.bz2
apply.h: include missing header
When running `make hdr-check`, we got the following error messages: apply.h:146:22: error: use of undeclared identifier 'GIT_MAX_HEXSZ' char old_oid_prefix[GIT_MAX_HEXSZ + 1]; ^ apply.h:147:22: error: use of undeclared identifier 'GIT_MAX_HEXSZ' char new_oid_prefix[GIT_MAX_HEXSZ + 1]; ^ apply.h:151:33: error: array has incomplete element type 'struct object_id' struct object_id threeway_stage[3]; ^ ./strbuf.h:79:8: note: forward declaration of 'struct object_id' struct object_id; ^ 3 errors generated. make: *** [apply.hco] Error 1 Include the missing "hash.h" header to fix these errors. Signed-off-by: Denton Liu <liu.denton@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'apply.h')
-rw-r--r--apply.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/apply.h b/apply.h
index a795193..da3d95f 100644
--- a/apply.h
+++ b/apply.h
@@ -1,6 +1,7 @@
#ifndef APPLY_H
#define APPLY_H
+#include "hash.h"
#include "lockfile.h"
#include "string-list.h"