summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--git.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/git.h b/git.h
index 252099c..bce0879 100644
--- a/git.h
+++ b/git.h
@@ -25,6 +25,8 @@ struct comment {
char *author; /* Author of comment. */
char *desc; /* Description/Contents of comment. */
time_t date; /* Date of creation. */
+ int id; /* Comment ID. */
+ comment *reply; /* Comment that is being replied to. */
};
struct git_branch {