summaryrefslogtreecommitdiff
path: root/src/diff.c
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2020-06-08 12:39:09 +0200
committerPatrick Steinhardt <ps@pks.im>2020-06-08 21:17:57 +0200
commit7c499b544dc3383cce38956f86d67f328bc718e6 (patch)
tree2067e61a499af26f33725ddba35f389d67a2e732 /src/diff.c
parentb221755227c0a7155d83dc595e3902649fa0760b (diff)
downloadlibgit2-7c499b544dc3383cce38956f86d67f328bc718e6.tar.gz
tree-wide: remove unused functions
We have some functions which aren't used anywhere. Let's remove them to get rid of unneeded baggage.
Diffstat (limited to 'src/diff.c')
-rw-r--r--src/diff.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/diff.c b/src/diff.c
index 47f49d949..efbedb50b 100644
--- a/src/diff.c
+++ b/src/diff.c
@@ -32,11 +32,6 @@ GIT_INLINE(const char *) diff_delta__path(const git_diff_delta *delta)
return str;
}
-const char *git_diff_delta__path(const git_diff_delta *delta)
-{
- return diff_delta__path(delta);
-}
-
int git_diff_delta__cmp(const void *a, const void *b)
{
const git_diff_delta *da = a, *db = b;