diff options
| author | Etienne Samson <samson.etienne@gmail.com> | 2018-03-22 23:27:21 +0100 |
|---|---|---|
| committer | Etienne Samson <samson.etienne@gmail.com> | 2018-05-07 21:50:15 +0200 |
| commit | 96576372fd2dd89edc5939f87c72907aa2d92909 (patch) | |
| tree | d453d3c486a2b475f0508c2dafb713d5aa22d98e /include/git2/sys | |
| parent | 84bcae6c08384ce32ab77a7b5b48098925b61918 (diff) | |
| download | libgit2-96576372fd2dd89edc5939f87c72907aa2d92909.tar.gz | |
docs: fix more missing includes
Diffstat (limited to 'include/git2/sys')
| -rw-r--r-- | include/git2/sys/index.h | 3 | ||||
| -rw-r--r-- | include/git2/sys/merge.h | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/git2/sys/index.h b/include/git2/sys/index.h index 2e2b87e68..f1900df42 100644 --- a/include/git2/sys/index.h +++ b/include/git2/sys/index.h @@ -7,6 +7,9 @@ #ifndef INCLUDE_sys_git_index_h__ #define INCLUDE_sys_git_index_h__ +#include "git2/common.h" +#include "git2/types.h" + /** * @file git2/sys/index.h * @brief Low-level Git index manipulation routines diff --git a/include/git2/sys/merge.h b/include/git2/sys/merge.h index eed106c07..271527d8e 100644 --- a/include/git2/sys/merge.h +++ b/include/git2/sys/merge.h @@ -7,6 +7,11 @@ #ifndef INCLUDE_sys_git_merge_h__ #define INCLUDE_sys_git_merge_h__ +#include "git2/common.h" +#include "git2/types.h" +#include "git2/index.h" +#include "git2/merge.h" + /** * @file git2/sys/merge.h * @brief Git merge driver backend and plugin routines |
