Update draft release notes to 2.1
[gitweb.git] / split-index.h
index 812e510f7e71cb9f32c1945e6a4cbd80598cd89a..c1324f521a87c427c531464c5e6424fe38d7d35b 100644 (file)
@@ -3,11 +3,17 @@
 
 struct index_state;
 struct strbuf;
+struct ewah_bitmap;
 
 struct split_index {
        unsigned char base_sha1[20];
        struct index_state *base;
+       struct ewah_bitmap *delete_bitmap;
+       struct ewah_bitmap *replace_bitmap;
+       struct cache_entry **saved_cache;
        unsigned int saved_cache_nr;
+       unsigned int nr_deletions;
+       unsigned int nr_replacements;
        int refcount;
 };