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/array.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/array.h')
-rw-r--r-- | src/array.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/array.h b/src/array.h index 1d4e1c224..f8a48722a 100644 --- a/src/array.h +++ b/src/array.h @@ -7,7 +7,7 @@ #ifndef INCLUDE_array_h__ #define INCLUDE_array_h__ -#include "util.h" +#include "common.h" /* * Use this to declare a typesafe resizable array of items, a la: |