Do not return on void helper methods

MSVC doesn't swallow that.
This commit is contained in:
Vicent Marti 2011-03-23 15:44:52 +02:00
parent f0d08b7cec
commit c0ffe51853
4 changed files with 4 additions and 4 deletions

View File

@ -66,7 +66,7 @@ GIT_INLINE(int) git_blob_lookup(git_blob **blob, git_repository *repo, const git
GIT_INLINE(void) git_blob_close(git_blob *blob)
{
return git_object_close((git_object *) blob);
git_object_close((git_object *) blob);
}

View File

@ -67,7 +67,7 @@ GIT_INLINE(int) git_commit_lookup(git_commit **commit, git_repository *repo, con
GIT_INLINE(void) git_commit_close(git_commit *commit)
{
return git_object_close((git_object *) commit);
git_object_close((git_object *) commit);
}
/**

View File

@ -66,7 +66,7 @@ GIT_INLINE(int) git_tag_lookup(git_tag **tag, git_repository *repo, const git_oi
GIT_INLINE(void) git_tag_close(git_tag *tag)
{
return git_object_close((git_object *) tag);
git_object_close((git_object *) tag);
}

View File

@ -66,7 +66,7 @@ GIT_INLINE(int) git_tree_lookup(git_tree **tree, git_repository *repo, const git
GIT_INLINE(void) git_tree_close(git_tree *tree)
{
return git_object_close((git_object *) tree);
git_object_close((git_object *) tree);
}