diff options
author | Etienne Samson <samson.etienne@gmail.com> | 2019-06-13 19:42:55 +0200 |
---|---|---|
committer | Etienne Samson <samson.etienne@gmail.com> | 2019-06-15 16:11:56 +0200 |
commit | 2376fa6c65a80e23d24393328212a80765d7ba94 (patch) | |
tree | 2925dd532688a9fbd8a2d292bb42b9e596198889 | |
parent | c3179eff31172b727de59a84b598a77cfbb10096 (diff) | |
download | libgit2-2376fa6c65a80e23d24393328212a80765d7ba94.tar.gz |
indexer: correct missing includes
Docurium seems to choke on this header because it can't see both
git_indexer_progress & git_indexer_progress_cb, let's add the include.
-rw-r--r-- | include/git2/odb.h | 1 | ||||
-rw-r--r-- | include/git2/odb_backend.h | 1 | ||||
-rw-r--r-- | include/git2/pack.h | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/include/git2/odb.h b/include/git2/odb.h index de6010647..e8824b727 100644 --- a/include/git2/odb.h +++ b/include/git2/odb.h @@ -11,6 +11,7 @@ #include "types.h" #include "oid.h" #include "oidarray.h" +#include "indexer.h" /** * @file git2/odb.h diff --git a/include/git2/odb_backend.h b/include/git2/odb_backend.h index 8d1401a49..47e0dd4b2 100644 --- a/include/git2/odb_backend.h +++ b/include/git2/odb_backend.h @@ -9,6 +9,7 @@ #include "common.h" #include "types.h" +#include "indexer.h" /** * @file git2/backend.h diff --git a/include/git2/pack.h b/include/git2/pack.h index de29831c2..08d2caff1 100644 --- a/include/git2/pack.h +++ b/include/git2/pack.h @@ -9,6 +9,7 @@ #include "common.h" #include "oid.h" +#include "indexer.h" /** * @file git2/pack.h |