Commit 81d0ff1c by Tim Clem

fix cast in tag.h

git_tag_lookup() and git_tag_new() changed to cast GIT_OBJ_TAG to
git_otype in order to compile lib in xcode
parent d4b5a4e2
...@@ -19,3 +19,4 @@ msvc/Release/ ...@@ -19,3 +19,4 @@ msvc/Release/
*.user *.user
*.sdf *.sdf
*.opensdf *.opensdf
.DS_Store
...@@ -51,7 +51,7 @@ GIT_BEGIN_DECL ...@@ -51,7 +51,7 @@ GIT_BEGIN_DECL
*/ */
GIT_INLINE(int) git_tag_lookup(git_tag **tag, git_repository *repo, const git_oid *id) GIT_INLINE(int) git_tag_lookup(git_tag **tag, git_repository *repo, const git_oid *id)
{ {
return git_repository_lookup((git_object **)tag, repo, id, GIT_OBJ_TAG); return git_repository_lookup((git_object **)tag, repo, id, (git_otype)GIT_OBJ_TAG);
} }
/** /**
...@@ -67,7 +67,7 @@ GIT_INLINE(int) git_tag_lookup(git_tag **tag, git_repository *repo, const git_oi ...@@ -67,7 +67,7 @@ GIT_INLINE(int) git_tag_lookup(git_tag **tag, git_repository *repo, const git_oi
*/ */
GIT_INLINE(int) git_tag_new(git_tag **tag, git_repository *repo) GIT_INLINE(int) git_tag_new(git_tag **tag, git_repository *repo)
{ {
return git_repository_newobject((git_object **)tag, repo, GIT_OBJ_TAG); return git_repository_newobject((git_object **)tag, repo, (git_otype)GIT_OBJ_TAG);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment