We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2efce72 commit ed792abCopy full SHA for ed792ab
gix-index/src/entry/flags.rs
@@ -12,7 +12,7 @@ bitflags! {
12
/// The mask to obtain the length of the path associated with this entry, up to 4095 characters without extension.
13
const PATH_LEN = 0x0fff;
14
/// The mask to apply to obtain the stage number of an entry, encoding three value: 0 = base, 1 = ours, 2 = theirs.
15
- const STAGE_MASK = 1<<12 | 1<<13;
+ const STAGE_MASK = (1<<12) | (1<<13);
16
/// If set, additional bits need to be written to storage.
17
const EXTENDED = 1<<14;
18
/// If set, the entry be assumed to match with the version on the working tree, as a way to avoid `lstat()` checks.
0 commit comments