summaryrefslogtreecommitdiff
path: root/delta-islands.h
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2018-11-10 05:49:03 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-11-12 05:50:06 (GMT)
commit385cb64ff3598451ac3019443b364f49b8395e82 (patch)
tree70eac77a7335a205ccb72b528fd5b9ddfa5914db /delta-islands.h
parentc207e9e1f6dd1802f0deadae51af5615d855edc4 (diff)
downloadgit-385cb64ff3598451ac3019443b364f49b8395e82.zip
git-385cb64ff3598451ac3019443b364f49b8395e82.tar.gz
git-385cb64ff3598451ac3019443b364f49b8395e82.tar.bz2
delta-islands.c: remove the_repository references
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'delta-islands.h')
-rw-r--r--delta-islands.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/delta-islands.h b/delta-islands.h
index b635cd0..3ac8045 100644
--- a/delta-islands.h
+++ b/delta-islands.h
@@ -1,14 +1,17 @@
#ifndef DELTA_ISLANDS_H
#define DELTA_ISLANDS_H
+struct commit;
struct object_id;
struct packing_data;
-struct commit;
+struct repository;
int island_delta_cmp(const struct object_id *a, const struct object_id *b);
int in_same_island(const struct object_id *, const struct object_id *);
-void resolve_tree_islands(int progress, struct packing_data *to_pack);
-void load_delta_islands(void);
+void resolve_tree_islands(struct repository *r,
+ int progress,
+ struct packing_data *to_pack);
+void load_delta_islands(struct repository *r);
void propagate_island_marks(struct commit *commit);
int compute_pack_layers(struct packing_data *to_pack);