diff options
author | Russell Belfer <rb@github.com> | 2014-02-20 14:27:10 -0800 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2014-02-20 14:27:10 -0800 |
commit | 72556cc63ba93a187589921c6008caf92686ea9c (patch) | |
tree | 441873fde7a3ccc7f8fba11a8555641dba891746 /src/vector.h | |
parent | 68a19ca9ffb685123038a8d16c0a59845f147778 (diff) | |
download | libgit2-72556cc63ba93a187589921c6008caf92686ea9c.tar.gz |
Address PR comments
* Make GIT_INLINE an internal definition so it cannot be used in
public headers
* Fix language in CONTRIBUTING
* Make index caps API use signed instead of unsigned values
Diffstat (limited to 'src/vector.h')
-rw-r--r-- | src/vector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vector.h b/src/vector.h index f8256853b..682b6ad27 100644 --- a/src/vector.h +++ b/src/vector.h @@ -7,7 +7,7 @@ #ifndef INCLUDE_vector_h__ #define INCLUDE_vector_h__ -#include "git2/common.h" +#include "common.h" typedef int (*git_vector_cmp)(const void *, const void *); |