summaryrefslogtreecommitdiff
path: root/src/notes.h
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2014-07-21 10:47:01 -0400
committerEdward Thomson <ethomson@microsoft.com>2014-10-26 22:59:29 -0400
commitbad4937ea50a8874598171c7ccb3d3443f1daf7b (patch)
treefddf82c84fd56243ddf1678b4394eddc05651c09 /src/notes.h
parenta612a25fa673447e874407fd2d9501998885d392 (diff)
downloadlibgit2-bad4937ea50a8874598171c7ccb3d3443f1daf7b.tar.gz
Introduce `git_note_author`, `git_note_committer`
Diffstat (limited to 'src/notes.h')
-rw-r--r--src/notes.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/notes.h b/src/notes.h
index e9cfa00fa..cfc0ca239 100644
--- a/src/notes.h
+++ b/src/notes.h
@@ -23,6 +23,9 @@
struct git_note {
git_oid id;
+ git_signature *author;
+ git_signature *committer;
+
char *message;
};