summaryrefslogtreecommitdiff
path: root/packfile.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2018-08-10 23:09:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-08-13 20:47:50 (GMT)
commit202e7f1e161b5bce6587d1a696843ead10a8b477 (patch)
tree4f21fa4f3dd1608df4b977345f8ce5f82bf4fa95 /packfile.h
parent1d89318c48d233d52f1db230cf622935ac3c69fa (diff)
downloadgit-202e7f1e161b5bce6587d1a696843ead10a8b477.zip
git-202e7f1e161b5bce6587d1a696843ead10a8b477.tar.gz
git-202e7f1e161b5bce6587d1a696843ead10a8b477.tar.bz2
for_each_*_object: store flag definitions in a single location
These flags were split between cache.h and packfile.h, because some of the flags apply only to packs. However, they share a single numeric namespace, since both are respected for the packed variant. Let's make sure they're defined together so that nobody accidentally adds a new flag in one location that duplicates the other. While we're here, let's also put them in an enum (which helps debugger visibility) and use "(1<<n)" rather than counting powers of 2 manually. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'packfile.h')
-rw-r--r--packfile.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/packfile.h b/packfile.h
index cc7eaff..6ddc6a2 100644
--- a/packfile.h
+++ b/packfile.h
@@ -149,14 +149,10 @@ extern int has_object_pack(const struct object_id *oid);
extern int has_pack_index(const unsigned char *sha1);
/*
- * Only iterate over packs obtained from the promisor remote.
- */
-#define FOR_EACH_OBJECT_PROMISOR_ONLY 2
-
-/*
* Iterate over packed objects in both the local
* repository and any alternates repositories (unless the
- * FOR_EACH_OBJECT_LOCAL_ONLY flag, defined in cache.h, is set).
+ * FOR_EACH_OBJECT_LOCAL_ONLY flag is set). See cache.h for the complete list
+ * of flags.
*/
typedef int each_packed_object_fn(const struct object_id *oid,
struct packed_git *pack,