diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-07-08 22:15:00 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-07-08 22:15:00 +0200 |
commit | 1ef488eaaaeba214dd2e03a256e976bd7740fe0a (patch) | |
tree | 519b185bd1ceaafdb97518a85ccf38f466110f6b /revision.h | |
parent | Merge branch 'ah/graph-typofix' (diff) | |
parent | bitmaps: don't recurse into trees already in the bitmap (diff) | |
download | git-1ef488eaaaeba214dd2e03a256e976bd7740fe0a.tar.xz git-1ef488eaaaeba214dd2e03a256e976bd7740fe0a.zip |
Merge branch 'jk/bitmap-tree-optim'
Avoid duplicated work while building reachability bitmaps.
* jk/bitmap-tree-optim:
bitmaps: don't recurse into trees already in the bitmap
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/revision.h b/revision.h index 17698cb51a..5c5510d422 100644 --- a/revision.h +++ b/revision.h @@ -262,6 +262,7 @@ struct rev_info { int min_parents; int max_parents; int (*include_check)(struct commit *, void *); + int (*include_check_obj)(struct object *obj, void *); void *include_check_data; /* diff info for patches and for paths limiting */ |