| 6991 | } |
| 6992 | |
| 6993 | int diff_flush_patch_id(struct diff_options *options, struct object_id *oid, int diff_header_only) |
| 6994 | { |
| 6995 | struct diff_queue_struct *q = &diff_queued_diff; |
| 6996 | int result = diff_get_patch_id(options, oid, diff_header_only); |
| 6997 | |
| 6998 | diff_queue_clear(q); |
| 6999 | |
| 7000 | return result; |
| 7001 | } |
| 7002 | |
| 7003 | static int is_summary_empty(const struct diff_queue_struct *q) |
| 7004 | { |
no test coverage detected