Skip to content

Commit 2538388

Browse files
committed
reorder constant location to match sequential values of existing constants
1 parent d475dc9 commit 2538388

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libgit2-sys/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1102,6 +1102,7 @@ pub const GIT_DIFF_ENABLE_FAST_UNTRACKED_DIRS: git_diff_option_t = 1 << 14;
11021102
pub const GIT_DIFF_UPDATE_INDEX: git_diff_option_t = 1 << 15;
11031103
pub const GIT_DIFF_INCLUDE_UNREADABLE: git_diff_option_t = 1 << 16;
11041104
pub const GIT_DIFF_INCLUDE_UNREADABLE_AS_UNTRACKED: git_diff_option_t = 1 << 17;
1105+
pub const GIT_DIFF_INDENT_HEURISTIC: git_diff_option_t = 1 << 18;
11051106
pub const GIT_DIFF_FORCE_TEXT: git_diff_option_t = 1 << 20;
11061107
pub const GIT_DIFF_FORCE_BINARY: git_diff_option_t = 1 << 21;
11071108
pub const GIT_DIFF_IGNORE_WHITESPACE: git_diff_option_t = 1 << 22;
@@ -1112,7 +1113,6 @@ pub const GIT_DIFF_SHOW_UNMODIFIED: git_diff_option_t = 1 << 26;
11121113
pub const GIT_DIFF_PATIENCE: git_diff_option_t = 1 << 28;
11131114
pub const GIT_DIFF_MINIMAL: git_diff_option_t = 1 << 29;
11141115
pub const GIT_DIFF_SHOW_BINARY: git_diff_option_t = 1 << 30;
1115-
pub const GIT_DIFF_INDENT_HEURISTIC: git_diff_option_t = 1 << 18;
11161116

11171117
#[repr(C)]
11181118
pub struct git_diff_find_options {

0 commit comments

Comments
 (0)