diff options
Diffstat (limited to 'diffcore.h')
| -rw-r--r-- | diffcore.h | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/diffcore.h b/diffcore.h index f5c6de4841..badc2261c2 100644 --- a/diffcore.h +++ b/diffcore.h @@ -127,6 +127,8 @@ struct diff_filepair {  #define DIFF_PAIR_MODE_CHANGED(p) ((p)->one->mode != (p)->two->mode)  void diff_free_filepair(struct diff_filepair *); +void pool_diff_free_filepair(struct mem_pool *pool, +			     struct diff_filepair *p);  int diff_unmodified_pair(struct diff_filepair *); @@ -179,9 +181,11 @@ void partial_clear_dir_rename_count(struct strmap *dir_rename_count);  void diffcore_break(struct repository *, int);  void diffcore_rename(struct diff_options *);  void diffcore_rename_extended(struct diff_options *options, +			      struct mem_pool *pool,  			      struct strintmap *relevant_sources,  			      struct strintmap *dirs_removed, -			      struct strmap *dir_rename_count); +			      struct strmap *dir_rename_count, +			      struct strmap *cached_pairs);  void diffcore_merge_broken(void);  void diffcore_pickaxe(struct diff_options *);  void diffcore_order(const char *orderfile);  | 
