summaryrefslogtreecommitdiff
path: root/src/commit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/commit.h')
-rw-r--r--src/commit.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/commit.h b/src/commit.h
index 50acd0c53..524570f2c 100644
--- a/src/commit.h
+++ b/src/commit.h
@@ -2,6 +2,7 @@
#define INCLUDE_commit_h__
#include "git/commit.h"
+#include "tree.h"
#include "revobject.h"
#include <time.h>
@@ -22,12 +23,15 @@ struct git_commit_list {
typedef struct git_commit_list git_commit_list;
typedef struct git_commit_node git_commit_node;
+
struct git_commit {
git_revpool_object object;
time_t commit_time;
git_commit_list parents;
+ git_tree *tree;
+
unsigned short in_degree;
unsigned parsed:1,
seen:1,