diff options
author | Vicent Marti <tanoku@gmail.com> | 2013-04-30 13:13:38 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2013-04-30 13:13:38 +0200 |
commit | 0b726701f3d3c5a3a596b53d8db0b7a4b4032dfb (patch) | |
tree | e83881767c39302b2c1c7298eb02f4f29f0b2530 /include/git2/commit.h | |
parent | cd2ed9f0cc9d8e0e1724304e946adb28271e0669 (diff) | |
download | libgit2-0b726701f3d3c5a3a596b53d8db0b7a4b4032dfb.tar.gz |
object: Explicitly define helper API methods for all obj types
Diffstat (limited to 'include/git2/commit.h')
-rw-r--r-- | include/git2/commit.h | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/include/git2/commit.h b/include/git2/commit.h index 0f7601252..f536ac7c8 100644 --- a/include/git2/commit.h +++ b/include/git2/commit.h @@ -30,10 +30,7 @@ GIT_BEGIN_DECL * an annotated tag it will be peeled back to the commit. * @return 0 or an error code */ -GIT_INLINE(int) git_commit_lookup(git_commit **commit, git_repository *repo, const git_oid *id) -{ - return git_object_lookup((git_object **)commit, repo, id, GIT_OBJ_COMMIT); -} +GIT_EXTERN(int) git_commit_lookup(git_commit **commit, git_repository *repo, const git_oid *id); /** * Lookup a commit object from a repository, @@ -48,10 +45,7 @@ GIT_INLINE(int) git_commit_lookup(git_commit **commit, git_repository *repo, con * @param len the length of the short identifier * @return 0 or an error code */ -GIT_INLINE(int) git_commit_lookup_prefix(git_commit **commit, git_repository *repo, const git_oid *id, size_t len) -{ - return git_object_lookup_prefix((git_object **)commit, repo, id, len, GIT_OBJ_COMMIT); -} +GIT_EXTERN(int) git_commit_lookup_prefix(git_commit **commit, git_repository *repo, const git_oid *id, size_t len); /** * Close an open commit @@ -65,10 +59,7 @@ GIT_INLINE(int) git_commit_lookup_prefix(git_commit **commit, git_repository *re * @param commit the commit to close */ -GIT_INLINE(void) git_commit_free(git_commit *commit) -{ - git_object_free((git_object *) commit); -} +GIT_EXTERN(void) git_commit_free(git_commit *commit); /** * Get the id of a commit. @@ -76,10 +67,7 @@ GIT_INLINE(void) git_commit_free(git_commit *commit) * @param commit a previously loaded commit. * @return object identity for the commit. */ -GIT_INLINE(const git_oid *) git_commit_id(const git_commit *commit) -{ - return git_object_id((const git_object *)commit); -} +GIT_EXTERN(const git_oid *) git_commit_id(const git_commit *commit); /** * Get the encoding for the message of a commit, |