summaryrefslogtreecommitdiff
path: root/src/pack-objects.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-10-12 11:42:31 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2015-03-11 02:36:11 +0100
commitb63b76e0b0b658dff328e0d9e109ce040830786c (patch)
tree1c7ed9c1c0c6df008f10df0bd7feecc0e77631b3 /src/pack-objects.c
parentc23f90053ddc10e7dbf0f99aabd5e13b0f317a42 (diff)
downloadlibgit2-b63b76e0b0b658dff328e0d9e109ce040830786c.tar.gz
Reorder some khash declarations
Keep the definitions in the headers, while putting the declarations in the C files. Putting the function definitions in headers causes them to be duplicated if you include two headers with them.
Diffstat (limited to 'src/pack-objects.c')
-rw-r--r--src/pack-objects.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pack-objects.c b/src/pack-objects.c
index f644520ac..28fddf732 100644
--- a/src/pack-objects.c
+++ b/src/pack-objects.c
@@ -39,6 +39,8 @@ struct pack_write_context {
git_transfer_progress *stats;
};
+GIT__USE_OIDMAP;
+
#ifdef GIT_THREADS
#define GIT_PACKBUILDER__MUTEX_OP(pb, mtx, op) do { \