diff options
| author | Russell Belfer <rb@github.com> | 2014-10-10 15:17:05 -0700 |
|---|---|---|
| committer | Russell Belfer <rb@github.com> | 2014-10-10 15:17:05 -0700 |
| commit | babbff347c19473a8ce571c6ef3fbd0cc7b8d9de (patch) | |
| tree | 3daf5fb6feafbddeefbac66fa8230f58bcd6842c /src | |
| parent | fd0f6d38558a03e8f1685098bac0e86a2220c57d (diff) | |
| download | libgit2-babbff347c19473a8ce571c6ef3fbd0cc7b8d9de.tar.gz | |
Move un-namespaced constant to internal header
FLAG_BITS only seems to be used internally
Diffstat (limited to 'src')
| -rw-r--r-- | src/commit_list.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commit_list.h b/src/commit_list.h index 7cd3945ae..6b3f473d3 100644 --- a/src/commit_list.h +++ b/src/commit_list.h @@ -18,6 +18,8 @@ #define COMMIT_ALLOC \ (sizeof(git_commit_list_node) + PARENTS_PER_COMMIT * sizeof(git_commit_list_node *)) +#define FLAG_BITS 4 + typedef struct git_commit_list_node { git_oid oid; uint32_t time; |
