Skip to content

Commit 9657637

Browse files
committed
docs: fix more missing includes
1 parent 84bcae6 commit 9657637

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

include/git2/rebase.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
#include "types.h"
1212
#include "oid.h"
1313
#include "annotated_commit.h"
14+
#include "merge.h"
15+
#include "checkout.h"
1416

1517
/**
1618
* @file git2/rebase.h

include/git2/status.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
#include "common.h"
1111
#include "types.h"
12+
#include "strarray.h"
13+
#include "diff.h"
1214

1315
/**
1416
* @file git2/status.h

include/git2/sys/index.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifndef INCLUDE_sys_git_index_h__
88
#define INCLUDE_sys_git_index_h__
99

10+
#include "git2/common.h"
11+
#include "git2/types.h"
12+
1013
/**
1114
* @file git2/sys/index.h
1215
* @brief Low-level Git index manipulation routines

include/git2/sys/merge.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
#ifndef INCLUDE_sys_git_merge_h__
88
#define INCLUDE_sys_git_merge_h__
99

10+
#include "git2/common.h"
11+
#include "git2/types.h"
12+
#include "git2/index.h"
13+
#include "git2/merge.h"
14+
1015
/**
1116
* @file git2/sys/merge.h
1217
* @brief Git merge driver backend and plugin routines

0 commit comments

Comments
 (0)