summaryrefslogtreecommitdiff
path: root/src/object.h
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-04-29 18:20:58 -0700
committerRussell Belfer <rb@github.com>2013-04-29 18:20:58 -0700
commit203d5b0e6829242ea412bbef7751e3c522ac5dd8 (patch)
treeae56cf3fb00fdb4438d7275a0bdc95d1fc59126c /src/object.h
parente4af0f001600cfe7d72cfb140fc7dc2d25be2c37 (diff)
downloadlibgit2-203d5b0e6829242ea412bbef7751e3c522ac5dd8.tar.gz
Some cleanups
Removed useless prototype and renamed object typecast functions declaration macro.
Diffstat (limited to 'src/object.h')
-rw-r--r--src/object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object.h b/src/object.h
index 906d40736..7b25fc342 100644
--- a/src/object.h
+++ b/src/object.h
@@ -28,7 +28,7 @@ int git_oid__parse(git_oid *oid, const char **buffer_out, const char *buffer_end
void git_oid__writebuf(git_buf *buf, const char *header, const git_oid *oid);
-#define GIT_OBJ_WRAPPER(TYPE,OBJTYPE) \
+#define GIT_OBJECT__TYPED_FUNCTIONS(TYPE,OBJTYPE) \
int TYPE##_lookup(TYPE **out, git_repository *repo, const git_oid *id) { \
return git_object_lookup((git_object **)out, repo, id, OBJTYPE); } \
int TYPE##_lookup_prefix(TYPE **out, git_repository *repo, const git_oid *id, size_t len) { \