summaryrefslogtreecommitdiff
path: root/commit-slab.h
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2018-05-19 05:28:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-05-21 05:07:19 (GMT)
commit878f0bb81990170cde5dba934fcd1ae4c2e698ee (patch)
treea2296212454a358f27580bc3b9dd8cecc51c3594 /commit-slab.h
parenta9f1f1f9f8b2873c43d6100717eb776ea288ed9e (diff)
downloadgit-878f0bb81990170cde5dba934fcd1ae4c2e698ee.zip
git-878f0bb81990170cde5dba934fcd1ae4c2e698ee.tar.gz
git-878f0bb81990170cde5dba934fcd1ae4c2e698ee.tar.bz2
commit-slab: support shared commit-slab
define_shared_commit_slab() could be used in a header file to define a commit-slab. One of these C files must include commit-slab-impl.h and "call" implement_shared_commit_slab(). Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit-slab.h')
-rw-r--r--commit-slab.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit-slab.h b/commit-slab.h
index 32aa2c0..69bf0c8 100644
--- a/commit-slab.h
+++ b/commit-slab.h
@@ -46,6 +46,6 @@
#define define_commit_slab(slabname, elemtype) \
declare_commit_slab(slabname, elemtype); \
- implement_commit_slab(slabname, elemtype)
+ implement_static_commit_slab(slabname, elemtype)
#endif /* COMMIT_SLAB_H */