summaryrefslogtreecommitdiff
path: root/src/diff.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/diff.h')
-rw-r--r--src/diff.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/diff.h b/src/diff.h
index b0f1ebbe8..7d69199ea 100644
--- a/src/diff.h
+++ b/src/diff.h
@@ -10,15 +10,15 @@
#include <stdio.h>
#include "vector.h"
#include "buffer.h"
+#include "iterator.h"
+#include "repository.h"
struct git_diff_list {
git_repository *repo;
git_diff_options opts;
- git_vector files; /* vector of git_diff_file_delta */
-
- /* the following are just used while processing the diff list */
- git_buf pfx;
- git_status_t status;
+ git_vector deltas; /* vector of git_diff_file_delta */
+ git_iterator_type_t old_src;
+ git_iterator_type_t new_src;
};
#endif