summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Rogers <alan@github.com>2014-07-22 11:15:33 +1000
committerAlan Rogers <alan@github.com>2014-07-22 11:17:42 +1000
commit35b1471f01c42c601804ef579a91778fceebbdab (patch)
treef50dbc40c703325ea9bba46dcb4428906e6a28cd
parent4edd1a036b3f181f871ab1fb57b01dcd5df67bac (diff)
downloadlibgit2-35b1471f01c42c601804ef579a91778fceebbdab.tar.gz
Move the UNREADABLE enums to the correct group.
-rw-r--r--include/git2/diff.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/git2/diff.h b/include/git2/diff.h
index f126453f4..8147fd31c 100644
--- a/include/git2/diff.h
+++ b/include/git2/diff.h
@@ -152,6 +152,12 @@ typedef enum {
*/
GIT_DIFF_UPDATE_INDEX = (1u << 15),
+ /** Include unreadable files in the diff */
+ GIT_DIFF_INCLUDE_UNREADABLE = (1u << 16),
+
+ /** Include unreadable files in the diff */
+ GIT_DIFF_INCLUDE_UNREADABLE_AS_UNTRACKED = (1u << 17),
+
/*
* Options controlling how output will be generated
*/
@@ -191,12 +197,6 @@ typedef enum {
* can apply given diff information to binary files.
*/
GIT_DIFF_SHOW_BINARY = (1 << 30),
-
- /** Include unreadable files in the diff */
- GIT_DIFF_INCLUDE_UNREADABLE = (1 << 27),
-
- /** Include unreadable files in the diff */
- GIT_DIFF_INCLUDE_UNREADABLE_AS_UNTRACKED = (1 << 31),
} git_diff_option_t;
/**