aboutsummaryrefslogtreecommitdiff
path: root/refs.h
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2026-02-23 12:59:48 +0100
committerJunio C Hamano <gitster@pobox.com>2026-02-23 13:21:19 -0800
commit4091d2989353aaf14080ee64ee2e94b60ceaf18d (patch)
tree978744ce88f964d301279f07552e28de8cf35724 /refs.h
parent5ef6d593f18ac6b1e7540eed45f5d795d5a82faa (diff)
downloadgit-4091d2989353aaf14080ee64ee2e94b60ceaf18d.tar.xz
refs: replace `refs_for_each_glob_ref_in()`
Replace calls to `refs_for_each_glob_ref_in()` with the newly introduced `refs_for_each_ref_ext()` function. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.h')
-rw-r--r--refs.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/refs.h b/refs.h
index 673d4ccce5..3fa2c11c1f 100644
--- a/refs.h
+++ b/refs.h
@@ -531,9 +531,6 @@ int refs_for_each_ref_in_prefixes(struct ref_store *refs,
int refs_for_each_glob_ref(struct ref_store *refs, refs_for_each_cb fn,
const char *pattern, void *cb_data);
-int refs_for_each_glob_ref_in(struct ref_store *refs, refs_for_each_cb fn,
- const char *pattern, const char *prefix, void *cb_data);
-
/*
* references matching any pattern in "exclude_patterns" are omitted from the
* result set on a best-effort basis.