mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-19 04:38:00 +00:00
Do not return on void
helper methods
MSVC doesn't swallow that.
This commit is contained in:
parent
f0d08b7cec
commit
c0ffe51853
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user