1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-18 17:06:07 +02:00

treewide: be explicit about dependence on mem-pool.h

Signed-off-by: Elijah Newren <newren@gmail.com>
Acked-by: Calvin Wan <calvinwan@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Elijah Newren 2023-04-11 00:41:47 -07:00 committed by Junio C Hamano
parent 6f2d743043
commit 5bc07225e5
6 changed files with 5 additions and 1 deletions

View File

@ -15,6 +15,7 @@
#include "hook.h" #include "hook.h"
#include "ll-merge.h" #include "ll-merge.h"
#include "lockfile.h" #include "lockfile.h"
#include "mem-pool.h"
#include "merge-recursive.h" #include "merge-recursive.h"
#include "object-store.h" #include "object-store.h"
#include "parse-options.h" #include "parse-options.h"

View File

@ -13,7 +13,6 @@
#include "object.h" #include "object.h"
#include "repository.h" #include "repository.h"
#include "statinfo.h" #include "statinfo.h"
#include "mem-pool.h"
typedef struct git_zstream { typedef struct git_zstream {
z_stream z; z_stream z;

View File

@ -31,6 +31,7 @@
#include "hex.h" #include "hex.h"
#include "entry.h" #include "entry.h"
#include "ll-merge.h" #include "ll-merge.h"
#include "mem-pool.h"
#include "object-store.h" #include "object-store.h"
#include "oid-array.h" #include "oid-array.h"
#include "promisor-remote.h" #include "promisor-remote.h"

View File

@ -21,6 +21,7 @@
#include "blob.h" #include "blob.h"
#include "environment.h" #include "environment.h"
#include "gettext.h" #include "gettext.h"
#include "mem-pool.h"
#include "resolve-undo.h" #include "resolve-undo.h"
#include "run-command.h" #include "run-command.h"
#include "strbuf.h" #include "strbuf.h"

View File

@ -1,6 +1,7 @@
#include "cache.h" #include "cache.h"
#include "alloc.h" #include "alloc.h"
#include "gettext.h" #include "gettext.h"
#include "mem-pool.h"
#include "split-index.h" #include "split-index.h"
#include "ewah/ewok.h" #include "ewah/ewok.h"

View File

@ -1,5 +1,6 @@
#include "test-tool.h" #include "test-tool.h"
#include "cache.h" #include "cache.h"
#include "mem-pool.h"
#include "mergesort.h" #include "mergesort.h"
static uint32_t minstd_rand(uint32_t *state) static uint32_t minstd_rand(uint32_t *state)