summaryrefslogtreecommitdiff
path: root/include/git2/refdb.h
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@microsoft.com>2013-04-19 18:19:53 -0500
committerEdward Thomson <ethomson@microsoft.com>2013-04-19 18:43:17 -0500
commit4e4eab52f7c5062ea21ea278a38e48700e753883 (patch)
tree4c8133d7595b355e3150b4525e25ad25103d10ff /include/git2/refdb.h
parent4a38143c93dc705bc40109e3f79d7fac722d44d7 (diff)
downloadlibgit2-4e4eab52f7c5062ea21ea278a38e48700e753883.tar.gz
alloc doesn't take a refdb; git_refdb_free nicely in the tests
Diffstat (limited to 'include/git2/refdb.h')
-rw-r--r--include/git2/refdb.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/git2/refdb.h b/include/git2/refdb.h
index 76b8fda0d..0e3ec5eaf 100644
--- a/include/git2/refdb.h
+++ b/include/git2/refdb.h
@@ -32,13 +32,11 @@ GIT_BEGIN_DECL
* @return the created git_reference or NULL on error
*/
GIT_EXTERN(git_reference *) git_reference__alloc(
- git_refdb *refdb,
const char *name,
const git_oid *oid,
const git_oid *peel);
GIT_EXTERN(git_reference *) git_reference__alloc_symbolic(
- git_refdb *refdb,
const char *name,
const char *target);