Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinquize <linquize@yahoo.com.hk>2013-05-15 16:26:55 +0400
committerLinquize <linquize@yahoo.com.hk>2013-05-15 16:26:55 +0400
commit0cb16fe924fb5c4e58866c28b06ace876e2dcbd3 (patch)
treef1c4e33497c216c333dc0133d8a15fcd137c358b /src/merge.h
parentbc2020d64869aa19a88b71aee33a24b54c178dab (diff)
Unify whitespaces to tabs
Diffstat (limited to 'src/merge.h')
-rw-r--r--src/merge.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/merge.h b/src/merge.h
index 6307d1569..da1fdf472 100644
--- a/src/merge.h
+++ b/src/merge.h
@@ -70,41 +70,41 @@ typedef enum {
typedef struct {
- git_repository *repo;
- git_pool pool;
+ git_repository *repo;
+ git_pool pool;
- /* Vector of git_index_entry that represent the merged items that
+ /* Vector of git_index_entry that represent the merged items that
* have been staged, either because only one side changed, or because
* the two changes were non-conflicting and mergeable. These items
* will be written as staged entries in the main index.
*/
- git_vector staged;
+ git_vector staged;
- /* Vector of git_merge_diff entries that represent the conflicts that
+ /* Vector of git_merge_diff entries that represent the conflicts that
* have not been automerged. These items will be written to high-stage
* entries in the main index.
*/
- git_vector conflicts;
+ git_vector conflicts;
- /* Vector of git_merge_diff that have been automerged. These items
+ /* Vector of git_merge_diff that have been automerged. These items
* will be written to the REUC when the index is produced.
*/
- git_vector resolved;
+ git_vector resolved;
} git_merge_diff_list;
/**
* Description of changes to one file across three trees.
*/
typedef struct {
- git_merge_diff_type_t type;
+ git_merge_diff_type_t type;
- git_index_entry ancestor_entry;
+ git_index_entry ancestor_entry;
- git_index_entry our_entry;
- git_delta_t our_status;
+ git_index_entry our_entry;
+ git_delta_t our_status;
- git_index_entry their_entry;
- git_delta_t their_status;
+ git_index_entry their_entry;
+ git_delta_t their_status;
} git_merge_diff;
int git_merge__bases_many(