summaryrefslogtreecommitdiff
path: root/ref-filter.h
diff options
context:
space:
mode:
authorAaron Lipman <alipman88@gmail.com>2020-09-18 21:58:41 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-09-18 22:41:55 (GMT)
commita1b19aa5d43c46fc570f6946ab5ad001dccc8cdf (patch)
tree7dcdf3603f4bde69d4b681dccd1875afcc3f442a /ref-filter.h
parent21bf933928c02372633b88aa6c4d9d71271d42b3 (diff)
downloadgit-a1b19aa5d43c46fc570f6946ab5ad001dccc8cdf.zip
git-a1b19aa5d43c46fc570f6946ab5ad001dccc8cdf.tar.gz
git-a1b19aa5d43c46fc570f6946ab5ad001dccc8cdf.tar.bz2
ref-filter: make internal reachable-filter API more precise
The internal reachable-filter API is a bit loose and imprecise; it also bleeds unnecessarily into the public header. Tighten the API by: * renaming do_merge_filter() to reach_filter() * separating parameters to explicitly identify what data is used by the function instead of passing an entire ref_filter_cbdata struct * renaming and moving internal constants from header to source file Signed-off-by: Aaron Lipman <alipman88@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ref-filter.h')
-rw-r--r--ref-filter.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/ref-filter.h b/ref-filter.h
index 2d13928..feaef4a 100644
--- a/ref-filter.h
+++ b/ref-filter.h
@@ -23,9 +23,6 @@
#define FILTER_REFS_DETACHED_HEAD 0x0020
#define FILTER_REFS_KIND_MASK (FILTER_REFS_ALL | FILTER_REFS_DETACHED_HEAD)
-#define DO_MERGE_FILTER_UNREACHABLE 0
-#define DO_MERGE_FILTER_REACHABLE 1
-
struct atom_value;
struct ref_sorting {