diff options
author | Patrick Steinhardt <ps@pks.im> | 2020-06-08 12:39:09 +0200 |
---|---|---|
committer | Patrick Steinhardt <ps@pks.im> | 2020-06-08 21:17:57 +0200 |
commit | 7c499b544dc3383cce38956f86d67f328bc718e6 (patch) | |
tree | 2067e61a499af26f33725ddba35f389d67a2e732 /src/reflog.c | |
parent | b221755227c0a7155d83dc595e3902649fa0760b (diff) | |
download | libgit2-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/reflog.c')
-rw-r--r-- | src/reflog.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/reflog.c b/src/reflog.c index 24dada047..33b7310b5 100644 --- a/src/reflog.c +++ b/src/reflog.c @@ -14,11 +14,6 @@ #include <git2/sys/refdb_backend.h> -git_reflog_entry *git_reflog_entry__alloc(void) -{ - return git__calloc(1, sizeof(git_reflog_entry)); -} - void git_reflog_entry__free(git_reflog_entry *entry) { git_signature_free(entry->committer); |