Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2013-09-21 02:38:15 +0400
committerBen Straub <bs@github.com>2013-09-21 02:38:15 +0400
commitef03d040cf6cc81d71d340cf3915735724a77449 (patch)
treef29b9842472d42283ed19b3dda67fbd36c331300 /src/blame.h
parenta121e580113cb3206166b432ad8ebfd85c0c4d5f (diff)
Trim fat from git_blame struct
Diffstat (limited to 'src/blame.h')
-rw-r--r--src/blame.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/blame.h b/src/blame.h
index 260d5b5a1..1b107320b 100644
--- a/src/blame.h
+++ b/src/blame.h
@@ -14,16 +14,11 @@ struct git_blame {
git_blame_options options;
git_vector hunks;
- git_vector unclaimed_hunks;
git_vector paths;
git_blob *final_blob;
- size_t num_lines;
- git_oid current_commit;
- git_oid parent_commit;
size_t current_diff_line;
- size_t current_blame_line;
git_blame_hunk *current_hunk;
};
@@ -32,6 +27,4 @@ git_blame *git_blame__alloc(
git_blame_options opts,
const char *path);
-git_blame_hunk *git_blame__alloc_hunk();
-
#endif