diff options
author | Derrick Stolee <dstolee@microsoft.com> | 2021-04-01 01:49:41 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-04-14 13:46:41 -0700 |
commit | 118a2e8bde0982d219607ff9f260b9cfeb25585c (patch) | |
tree | 7a1452685d7928884e7a40d7a7bff48d283f0f5d | |
parent | read-cache: expand on query into sparse-directory entry (diff) | |
download | tgif-118a2e8bde0982d219607ff9f260b9cfeb25585c.tar.xz |
cache: move ensure_full_index() to cache.h
Soon we will insert ensure_full_index() calls across the codebase.
Instead of also adding include statements for sparse-index.h, let's just
use the fact that anything that cares about the index already has
cache.h in its includes.
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Reviewed-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | cache.h | 1 | ||||
-rw-r--r-- | sparse-index.h | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -350,6 +350,7 @@ void add_name_hash(struct index_state *istate, struct cache_entry *ce); void remove_name_hash(struct index_state *istate, struct cache_entry *ce); void free_name_hash(struct index_state *istate); +void ensure_full_index(struct index_state *istate); /* Cache entry creation and cleanup */ diff --git a/sparse-index.h b/sparse-index.h index 39dcc85973..0268f38753 100644 --- a/sparse-index.h +++ b/sparse-index.h @@ -2,7 +2,6 @@ #define SPARSE_INDEX_H__ struct index_state; -void ensure_full_index(struct index_state *istate); int convert_to_sparse(struct index_state *istate); struct repository; |