diff options
author | Russell Belfer <rb@github.com> | 2013-04-29 18:20:58 -0700 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2013-04-29 18:20:58 -0700 |
commit | 203d5b0e6829242ea412bbef7751e3c522ac5dd8 (patch) | |
tree | ae56cf3fb00fdb4438d7275a0bdc95d1fc59126c /include/git2/oid.h | |
parent | e4af0f001600cfe7d72cfb140fc7dc2d25be2c37 (diff) | |
download | libgit2-203d5b0e6829242ea412bbef7751e3c522ac5dd8.tar.gz |
Some cleanups
Removed useless prototype and renamed object typecast functions
declaration macro.
Diffstat (limited to 'include/git2/oid.h')
-rw-r--r-- | include/git2/oid.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/git2/oid.h b/include/git2/oid.h index 288e90bc8..b20bb221a 100644 --- a/include/git2/oid.h +++ b/include/git2/oid.h @@ -145,15 +145,6 @@ GIT_EXTERN(void) git_oid_cpy(git_oid *out, const git_oid *src); * @param b second oid structure. * @return <0, 0, >0 if a < b, a == b, a > b. */ -GIT_EXTERN(int) git_oid_compare(const git_oid *oid_a, const git_oid *oid_b); - -/** - * Compare two oid structures. - * - * @param a first oid structure. - * @param b second oid structure. - * @return <0, 0, >0 if a < b, a == b, a > b. - */ GIT_EXTERN(int) git_oid_cmp(const git_oid *a, const git_oid *b); /** |